import { ButtonProps } from '../Button'; import { DataTrackingId } from '../../types'; /** * Props for the DrawerCancelButton component * @extends ButtonProps */ export type DrawerCancelButtonProps = ButtonProps & DataTrackingId; /** * A button component that automatically closes the drawer when clicked. * * Features: * - Automatically closes the drawer when clicked * - Extends Button component functionality * - Accessible with proper ARIA attributes * - Consistent styling with the design system * - Supports all standard button props * - Proper focus management * - Can be used anywhere within the drawer context * * @example * * Cancel * */ export declare const DrawerCancelButton: import('react').ForwardRefExoticComponent>;