/// <reference types="react" />
export type DrawerRootProps = {
    children: React.ReactNode;
};
export declare const Root: {
    ({ children }: DrawerRootProps): JSX.Element;
    displayName: string;
};
