export type Platform = 'undetermined' | 'macos' | 'ios' | 'windows' | 'android' | 'linux';
export type UseDeviceDetectReturn = {
    isMobile: boolean;
    platform: Platform;
};
export declare function useDeviceDetect(): UseDeviceDetectReturn;
