import { Factory } from '@mantine/core';
import { StickyFooterProps, StickyFooterStylesNames } from '../sticky-footer';
export interface ModalFooterProps extends Omit<StickyFooterProps, 'variant'> {
    /**
     * If the footer is sticky, its margin will be adjusted to counteract the padding of the Modal.Body, ensuring the footer visually sticks to the bottom of the modal.
     */
    sticky?: boolean;
}
export type ModalFooterStylesNames = StickyFooterStylesNames;
export type ModalFooterFactory = Factory<{
    props: ModalFooterProps;
    ref: HTMLDivElement;
    stylesNames: ModalFooterStylesNames;
}>;
export declare const ModalFooter: import("@mantine/core").MantineComponent<{
    props: ModalFooterProps;
    ref: HTMLDivElement;
    stylesNames: ModalFooterStylesNames;
}>;
//# sourceMappingURL=ModalFooter.d.ts.map