import { ComponentPropsWithoutRef } from 'react'; /** * Props for the DialogFooter component * @extends ComponentPropsWithoutRef<"footer"> */ export type DialogFooterProps = ComponentPropsWithoutRef<"footer"> & { /** * @default false */ sticky?: boolean; }; /** * DialogFooter component for the footer section of a Dialog. * * Features: * - Container for dialog action buttons * - Optional sticky positioning for long content * - Consistent spacing and alignment * - Right-aligned button layout by default * - Flexible content area for custom layouts * * @example * * Cancel * * */ export declare const DialogFooter: import('react').ForwardRefExoticComponent, HTMLElement>, "ref"> & { /** * @default false */ sticky?: boolean; } & import('react').RefAttributes>;