///
export declare const isObject: (val: unknown) => val is Record;
export declare const isFunction: (val: unknown) => val is Function;
export declare const isPromise: (val: unknown) => val is Promise;
export declare const upperCaseFirst: (str: string) => string;
export declare const clamp: (num: number, min: number, max: number) => number;
export declare function preventDefault(event: React.TouchEvent | TouchEvent, isStopPropagation?: boolean): void;