/// import { ProColumnType } from '@ant-design/pro-components'; interface IValueEnum { text: string; value: string; status: string; } export declare type ExtendsColType = ProColumnType & { valueEnum?: IValueEnum[]; renderTag?: boolean; }; interface FormateColumnsProps { columns: ExtendsColType[]; hideInSearchHandler: (keys: React.Key[]) => boolean; hideInTableHandler: (keys: React.Key[]) => boolean; } export declare function useFormatColumns({ columns, hideInSearchHandler, hideInTableHandler }: FormateColumnsProps, deps?: any[]): ExtendsColType[]; export {};