/** * Returns an array of strings representing the platforms based on the provided options. * * @param {string} options - The options provided to get platforms. * @returns {Array} An array of strings representing the platforms. */ export declare const get: (options: "ios" | "android" | "native") => Array<"ios" | "android">;