export declare function omit(obj: object, fields: string[]): object; export declare function removeEmptyAttrs(obj: T): Partial; export declare function getTabElementByValue(tabs: [], value: string): object; export declare function firstUpperCase(str: string): string; export declare type Gradients = { [percent: string]: string; }; export declare type FromTo = { from: string; to: string; }; export declare type LinearGradient = { direction?: string; } & (Gradients | FromTo); export declare function getBackgroundColor(color: string | string[] | LinearGradient): string; export declare function getPropsApiByEvent(eventName: string): string; export declare function pxCompat(param: string | number): string;