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