/**
 * An object representing supported platforms.
 *
 * - `DARWIN`: macOS platform identifier.
 * - `LINUX`: Linux platform identifier.
 * - `WIN32`: Windows platform identifier.
 */
export declare const SUPPORTED_PLATFORMS: {
    DARWIN: string;
    LINUX: string;
    WIN32: string;
};
