export interface CrudColumn {
    key: string;
    label: string;
    sortable?: boolean;
    pipe?: 'date' | 'datetime' | 'currency' | 'cpf' | 'cnpj' | 'phone' | 'cep' | 'mask' | 'relativeTime' | 'lastModifiedBy';
    action?: string;
}
export interface CrudActionEvent {
    action: string;
    row?: any;
}
