import { Size } from "../../types/general"; export declare const getObjSubset: , K extends keyof V>(obj: V, keys: K[]) => Pick; export declare const deepCopy: (value: any) => any; export declare const getNumber: (value?: string | number) => number; export declare const getSize: (size: Size | boolean) => Size; export declare const makeTextSize: (size: Size | boolean) => string[]; export declare const makePaddingY: (size: Size | boolean) => string[]; export declare const uuid: () => string; export declare const isExpiredToken: (token?: string) => boolean; export declare const pickedObj: (keys: (keyof T)[], obj: T) => Partial; export declare const parseObjAsFormData: (obj: Record) => FormData; export declare const removeEmptyKeys: (obj: Record) => Record; export declare const objHasFile: (obj: Record) => boolean; export declare const isSavable: (method?: string) => boolean; export declare const openUrl: (url?: string) => void;