import { default as React, ReactNode, HTMLAttributes } from 'react';
import { DrawerTheme } from './DrawerTheme';
export interface DrawerFooterProps extends HTMLAttributes<HTMLElement> {
    /**
     * The content to display in the drawer footer.
     */
    children?: ReactNode;
    /**
     * Additional CSS class name for the footer container.
     */
    className?: string;
    /**
     * Theme for the Drawer Footer.
     */
    theme?: DrawerTheme;
}
export declare const DrawerFooter: React.ForwardRefExoticComponent<DrawerFooterProps & React.RefAttributes<HTMLElement>>;
