import Api from './Api'; export interface ListLayoutColumnVO { fieldId?: string; columnCode: string; width?: number; display: boolean; sort: number; } export interface IListLayout { applyType: string; listLayoutColumnRelVOS: ListLayoutColumnVO[]; } declare class CacheColumnApi extends Api { get prefix(): string; getDefault(code: string): Promise; update(data: IListLayout): any; } declare const cacheColumnApi: CacheColumnApi; declare const cacheColumnApiConfig: CacheColumnApi; export { cacheColumnApi, cacheColumnApiConfig };