export interface VDataGridItemScopedSlot<TItem> {
    item: TItem;
    index: number;
    selected: boolean;
    expanded: boolean;
}
export interface VDataGridHeader {
    value: string;
    sortable: boolean;
    text: string;
    align: string;
    width?: string;
}
