import type { FC, ReactNode } from 'react'; import { type VariantProps } from 'class-variance-authority'; declare const drawerFooterControlsVariants: (props?: ({ placement?: "left" | "right" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type DrawerFooterControlsVariantsProps = VariantProps; interface DrawerFooterControlsBaseProps { children: ReactNode; } export type DrawerFooterControlsProps = DrawerFooterControlsBaseProps & DrawerFooterControlsVariantsProps; export declare const DrawerFooterControls: FC; export {};