import { CLIENT, PLATFORM } from './constants'; export interface Checker { name: string; match: RegExp[]; } declare type isClientEnv = `is${keyof typeof CLIENT}`; declare type isPlatformEnv = `is${keyof typeof PLATFORM}`; export declare type ClientEnv = { [key in isClientEnv]: boolean; }; export declare type PlatformEnv = { [key in isPlatformEnv]: boolean; }; export {};