import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '@empoleon/core';
export type SpotlightFooterStylesNames = 'footer';
export interface SpotlightFooterProps extends BoxProps, CompoundStylesApiProps<SpotlightFooterFactory>, ElementProps<'div'> {
}
export type SpotlightFooterFactory = Factory<{
    props: SpotlightFooterProps;
    ref: HTMLDivElement;
    stylesNames: SpotlightFooterStylesNames;
    compound: true;
}>;
export declare const SpotlightFooter: import("@empoleon/core").EmpoleonComponent<{
    props: SpotlightFooterProps;
    ref: HTMLDivElement;
    stylesNames: SpotlightFooterStylesNames;
    compound: true;
}>;
