export declare const isMobilish: () => boolean;
export declare type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
