export interface Flags {
}
export interface Geo {
    country: string;
}
export interface Switches {
    welcome_email: boolean;
}
export interface Waffle {
    flags: Flags;
    switches: Switches;
}
//# sourceMappingURL=whoami.d.ts.map