import { PropsWithChildren } from 'react';
export declare type ModalFooterProps = PropsWithChildren<PropsWithClass<{
    /**
     * Hide the border at the top of the footer. This will be automatically dismissed
     * if no actions are provided.
     */
    hideBorder?: boolean;
    /**
     * Set the theme of the content card. To ensure contrast with the default overlay color (dark),
     * this is set to `light` by default.
     */
    theme?: 'dark' | 'light' | 'auto';
}>>;
export declare type ModalFooterComponent = React.ForwardRefExoticComponent<ModalFooterProps>;
export declare const ModalFooter: import("react").ForwardRefExoticComponent<{
    style?: Record<string, any> | undefined;
    className?: string | undefined;
} & {
    /**
     * Hide the border at the top of the footer. This will be automatically dismissed
     * if no actions are provided.
     */
    hideBorder?: boolean | undefined;
    /**
     * Set the theme of the content card. To ensure contrast with the default overlay color (dark),
     * this is set to `light` by default.
     */
    theme?: "auto" | "dark" | "light" | undefined;
} & {
    children?: import("react").ReactNode;
} & import("react").RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=modal-footer.d.ts.map