import { default as React } from 'react'; import { default as Button } from '@mui/material/Button'; import { SxProps } from '@mui/material/styles'; export type CopyObject = { close_drawer_aria: string; }; interface DrawerProps { ariaLabelClose?: string; className?: string; footerStyles?: SxProps; hasSecondaryAction?: boolean; id?: string; isOpen: boolean; isPrimaryDisabled?: boolean; onClose: () => void; onPrimaryAction?: () => void; onSecondaryAction?: () => void; primaryButtonProps?: React.ComponentProps; primaryColor?: 'primary' | 'inherit' | 'secondary' | 'success' | 'error' | 'info' | 'warning'; primaryText?: string; secondaryColor?: 'primary' | 'inherit' | 'secondary' | 'success' | 'error' | 'info' | 'warning'; secondaryText?: string; shouldShowHeaderBorders?: boolean; shouldShowHeaderShadow?: boolean; sx?: SxProps; title: string; } declare const Drawer: React.FC>; export default Drawer;