interface HttpRequestHeadersInterfaceMock {
    [id: string]: string | string[]
}

interface HttpRequestInterfaceMock {
    headers: HttpRequestHeadersInterfaceMock,

    [id: string]: any,
}

export interface IsMobileOptions
{
    ua?: string | HttpRequestInterfaceMock
    tablet?: boolean
}

export declare function isMobile(opts?:IsMobileOptions): boolean;
