import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from "@it-corp/vpbank-core";
export type SpotlightEmptyStylesNames = "empty";
export interface SpotlightEmptyProps extends BoxProps, CompoundStylesApiProps<SpotlightEmptyFactory>, ElementProps<"div"> {
}
export type SpotlightEmptyFactory = Factory<{
    props: SpotlightEmptyProps;
    ref: HTMLDivElement;
    stylesNames: SpotlightEmptyStylesNames;
    compound: true;
}>;
export declare const SpotlightEmpty: import("@it-corp/vpbank-core").MantineComponent<{
    props: SpotlightEmptyProps;
    ref: HTMLDivElement;
    stylesNames: SpotlightEmptyStylesNames;
    compound: true;
}>;
