import { BoxProps, CompoundStylesApiProps, ElementProps, Factory, InputProps, InputStylesNames } from '@empoleon/core';
export type SpotlightSearchStylesNames = InputStylesNames;
export interface SpotlightSearchProps extends BoxProps, Omit<InputProps, 'classNames' | 'styles' | 'vars' | 'variant'>, CompoundStylesApiProps<SpotlightSearchFactory>, ElementProps<'input', 'size'> {
}
export type SpotlightSearchFactory = Factory<{
    props: SpotlightSearchProps;
    ref: HTMLInputElement;
    stylesNames: SpotlightSearchStylesNames;
    compound: true;
}>;
export declare const SpotlightSearch: import("@empoleon/core").EmpoleonComponent<{
    props: SpotlightSearchProps;
    ref: HTMLInputElement;
    stylesNames: SpotlightSearchStylesNames;
    compound: true;
}>;
