import { FC, PropsWithChildren } from 'react'; export type DrawerContentPlacement = "top" | "bottom" | "left" | "right"; export type DrawerContentProps = { isWithAnimation?: boolean; "aria-label"?: string; }; export declare const DrawerContent: FC>;