export declare type Dict = Record; export declare function omitUndefined(obj: any): Partial; export declare function getRandomString(length: number): string; export declare function orderedExtractInObject(parent: any, values: Array): Partial[]; /** * * @param parent The object from which data needs to extracted * @param values Keys which needs to be extracted * @returns [extractedProps, remainingProps] */ export declare function extractInObject(parent: any, values: Array): Partial[]; export declare function getColorFormColorScheme(props: Record): any; export declare function getColorScheme(props: Record, customColorScheme?: string): any; export declare const breakpoints: readonly string[]; export declare const inValidBreakpointProps: string[]; export declare function hasValidBreakpointFormat(breaks: any, property?: string): boolean; export declare function findLastValidBreakpoint(values: any, currentBreakpoint: number): any; export declare function getClosestBreakpoint(values: Record, point: number): number;