export interface SearchBuilderComponentContext {
    name: string;
    value: unknown;
    config?: {
        [key: string]: unknown;
    };
}
