import { columnsStateType, columnSettingsType } from "./types"; type readColumnOptionType = Omit & { select: number | number[]; type?: string; }; export declare const readColumnSettings: (columnOptions: readColumnOptionType[] | undefined, defaultType: columnSettingsType["type"], defaultFormat: string) => [columnSettingsType[], columnsStateType]; export {};