export declare class DataTableColumnConfiguration {
    id: string;
    type: string;
    label?: string;
    fieldName?: string;
    width?: number;
    hasCopyButton: boolean;
    isResizable: boolean;
    sortable: boolean;
    sortBy?: string;
    hasMenu: boolean;
    typeAttributes?: any;
    sortedAscending: boolean;
    sortedDescending: boolean;
    fullWidth?: number;
    offsetLeft?: number;
    left?: number;
    constructor(column: any);
}
