// Type definitions for webos/platform

type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
type Merge<M, N> = Omit<M, Extract<keyof M, keyof N>> & N;

/**
 * Returns the    object.
 */
export function detect(): object;
/**
 * Provides identification of webOS variants.
 */
export declare const platform: object;

export default platform;
