import { BoxProps } from '../Box';
export interface FooterOptions {
    information?: {
        subtitle: string;
        title: string;
    };
}
export type FooterProps = BoxProps & FooterOptions;
/**
 * @name Modal.Footer
 */
export declare const Footer: import('../System').CreateWuiComponent<"div", FooterProps>;
