export declare type FieldNamesType = {
    label?: string;
    value?: string;
    disabled?: string;
    children?: string;
};
export declare const useFieldNames: (fieldNames?: FieldNamesType) => string[];
