import { Status, ToastBody } from './type';
export declare const isBoolean: (value: any) => value is boolean;
export declare function isObject<T extends Record<any, any>>(value: any): value is NonNullable<T>;
export declare const isBetween: (value: number, min: number, max: number) => boolean;
export declare const uuidV4: () => string;
export declare const isBody: (value: Status) => value is ToastBody;
