import type { BaseBlock } from './types'; /** * Interface for block */ export interface SearchBlock extends BaseBlock { readonly type: 'search'; keyword: string; searchType?: 'all' | 'collection' | 'custom'; title?: string; } /** * Default block values */ export declare const defaultSearchBlock: () => SearchBlock; /** * Check if block is empty */ export declare function isSearchBlockEmpty(block?: SearchBlock | null): boolean; //# sourceMappingURL=search.d.ts.map