export declare function switchValue<T>(params: {
    condition?: boolean;
    truthy: T;
    falsy: T;
}): T;
export declare function switchValue<T>(condition: boolean, first: T, second: T): T;
export declare const switchV: typeof switchValue;
//# sourceMappingURL=switchValue.d.ts.map