export type Booleanish = boolean | 'true' | 'false';
export declare const toBooleanValue: (value: Booleanish | undefined) => boolean;
