import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '@empoleon/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("@empoleon/core").EmpoleonComponent<{
    props: SpotlightEmptyProps;
    ref: HTMLDivElement;
    stylesNames: SpotlightEmptyStylesNames;
    compound: true;
}>;
