import { ComponentPropsWithoutRef } from 'react';
/**
* Props for the DrawerFooter component
* @extends ComponentPropsWithoutRef<"footer">
*/
export type DrawerFooterProps = ComponentPropsWithoutRef<"footer"> & {
/**
* When true, the footer will stick to the bottom of the drawer.
* @default false
*/
sticky?: boolean;
};
/**
* Footer component for the drawer that displays action buttons and controls.
*
* Features:
* - Flexible layout for action buttons and controls
* - Optional sticky positioning at the bottom
* - Proper semantic HTML structure
* - Accessible with proper ARIA attributes
* - Consistent styling with the design system
* - Supports all standard footer element props
* - Responsive design that adapts to content
*
* @example
*
*
*
*
*/
export declare const DrawerFooter: import('react').ForwardRefExoticComponent, HTMLElement>, "ref"> & {
/**
* When true, the footer will stick to the bottom of the drawer.
* @default false
*/
sticky?: boolean;
} & import('react').RefAttributes>;