import { ReactNode } from 'react';
export interface LayoutCrudLeftModel {
    content: ReactNode;
    drawer: ReactNode;
    columnGap?: string;
}
