/// import { type DrawerProps as MuiDrawerProps } from '@mui/material'; import { type WithoutEmotionSpecific } from '../types'; type SideDialogSize = 'xs' | 'sm' | 'md' | 'lg'; export type SideDialogProps = WithoutEmotionSpecific> & { title?: string; /** * Размер SideDialog * @default sm */ size?: SideDialogSize; }; export declare const SideDialog: ({ children, title, onClose, open, size, ...props }: SideDialogProps) => JSX.Element; export {};