/** @alpha */ export interface SearchFilterResultTypeBlueprintParams { /** * The value of the result type. */ value: string; /** * The name of the result type. */ name: string; /** * The icon of the result type. */ icon: JSX.Element; } /** * @alpha */ export declare const SearchFilterResultTypeBlueprint: import("@backstage/frontend-plugin-api").ExtensionBlueprint<{ kind: "search-filter-result-type"; name: undefined; params: SearchFilterResultTypeBlueprintParams; output: import("@backstage/frontend-plugin-api").ConfigurableExtensionDataRef<{ value: string; name: string; icon: JSX.Element; }, "search.filters.result-types.type", {}>; inputs: {}; config: {}; configInput: {}; dataRefs: { resultType: import("@backstage/frontend-plugin-api").ConfigurableExtensionDataRef<{ value: string; name: string; icon: JSX.Element; }, "search.filters.result-types.type", {}>; }; }>;