import { DataAttributes } from '../types';
import { PropsWithBox } from '../Box';

export type DrawerContentProps = PropsWithBox<DataAttributes & {
    children: React.ReactNode;
}>;
export declare const Content: {
    ({ children, ...rest }: DrawerContentProps): JSX.Element;
    displayName: string;
};
