import { ReactNode, ComponentPropsWithRef } from 'react';
import { Omit } from '../../types';
import { Root } from './styled';
export interface LayoutCrudRightModel {
    content: ReactNode;
    drawer?: ReactNode;
    openDrawer?: boolean;
    RootProps?: Omit<ComponentPropsWithRef<typeof Root>, 'openDrawer'>;
}
