import { Ref } from 'vue';
interface SearchLayoutContext {
    type: Ref<'card' | 'normal'>;
    title: Ref<string | undefined>;
    bemClass: (name: string) => string;
}
export declare const provideSearchLayout: (props: SearchLayoutContext) => void;
export declare const injectSearchLayout: () => SearchLayoutContext;
export {};
