import { TableColumn } from '../table-element-plus/interface';
declare type AnyObject = {
    [propName: string]: any;
};
export declare const getProp: (column?: TableColumn) => any;
export declare const getLabel: (column?: TableColumn) => any;
export declare const sortCurdVNodeBtn: (vnodeList?: any) => any;
export declare const checkType: (target: any, value: string) => boolean;
export declare const uuid: () => string;
export declare const getObjectValue: (target: any, path?: string) => any;
/**
const a = { label: 1 }
const b = { label: 2, c: 20 }
mergeDifference(a, b) => a === { label: 1, c: 20 }
 */
export declare function mergeDifference(b?: AnyObject, s?: AnyObject): AnyObject;
export {};
