export declare const noop: () => void; export declare const logError: (message: string) => void; export declare const flushMessageCache: () => void; export declare const notifyDeprecation: (message: string, options?: { once: boolean; }) => void; export declare function mapToCssModules(className: string | null, cssModules?: Record): string; type UnknownObject = Record; export declare function pick(obj: T, keys: keyof T | Array): Partial; export declare function omit(obj: T, keys: keyof T | Array): Partial; export {};