import { BoxProps, CompoundStylesApiProps, ElementProps, Factory, InputProps, InputStylesNames } from "@it-corp/vpbank-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("@it-corp/vpbank-core").MantineComponent<{
    props: SpotlightSearchProps;
    ref: HTMLInputElement;
    stylesNames: SpotlightSearchStylesNames;
    compound: true;
}>;
