import React from 'react'; import type { AnchorVariant } from './DrawerInner'; export type DrawerContentProps = React.HTMLAttributes & { /** * Drawer position\ * \ * **Varians:** `bottom` `right` `left` `top`\ * **Default:** `bottom` */ readonly anchor: AnchorVariant; }; declare const _default: React.ForwardRefExoticComponent & { /** * Drawer position\ * \ * **Varians:** `bottom` `right` `left` `top`\ * **Default:** `bottom` */ readonly anchor: AnchorVariant; } & React.RefAttributes>; export default _default;