import React from 'react'; import { ModalInnerProps } from '../BaseModal/ModalInner'; export type AnchorVariant = 'bottom' | 'right' | 'left' | 'top'; export type DrawerInnerProps = ModalInnerProps & React.RefAttributes & { /** * Dialog unique ID */ readonly dialogID: string; /** * Drawer position\ * \ * **Varians:** `bottom` `right` `left` `top`\ * **Default:** `bottom` */ readonly anchor: AnchorVariant; }; declare const _default: React.ForwardRefExoticComponent & React.RefAttributes>; export default _default;