/** * Компонент Drawer. */ export declare const Drawer: import("react").FunctionComponent & Omit & import("@salutejs/plasma-new-hope/types/components/Panel/Panel.types.js").PanelProps & { animationInfo?: import("@salutejs/plasma-new-hope/types/components/Drawer/Drawer.types.js").DrawerAnimationInfo; placement?: import("@salutejs/plasma-new-hope/types/components/Drawer/Drawer.types.js").DrawerPlacement; asModal?: boolean; customBackgroundColor?: string; customContentBackgroundColor?: string; withBlur?: boolean; closeOnEsc?: boolean; closeOnOverlayClick?: boolean; onEscKeyDown?: (event: KeyboardEvent) => void; onOverlayClick?: (event: React.MouseEvent) => void; initialFocusRef?: React.RefObject; focusAfterRef?: React.RefObject; onClose?: () => void; } & import("react").RefAttributes>; /** * Компонент части контента Drawer. */ export declare const DrawerContent: import("react").FunctionComponent & { view?: string; } & import("react").HTMLAttributes & import("react").RefAttributes>; /** * Компонент верхней части Drawer. */ export declare const DrawerHeader: import("react").FunctionComponent & { hasClose?: boolean; closePlacement?: import("@salutejs/plasma-new-hope/styled-components").ClosePlacementType; actions?: import("react").ReactNode; onClose?: () => void; view?: string; } & import("react").HTMLAttributes & import("react").RefAttributes>; /** * Компонент нижней контента Drawer. */ export declare const DrawerFooter: import("react").FunctionComponent & { view?: string; } & import("react").HTMLAttributes & import("react").RefAttributes>;