import * as pulumi from "@pulumi/pulumi"; /** * Converts its argument to a boolean value. Only boolean values, null, and the exact strings * "true" and "false" can be converted to boolean. All other values will result in an error. */ export declare function tobool(args: ToboolArgs, opts?: pulumi.InvokeOptions): Promise; export interface ToboolArgs { input: any; } export interface ToboolResult { readonly result?: boolean; } /** * Converts its argument to a boolean value. Only boolean values, null, and the exact strings * "true" and "false" can be converted to boolean. All other values will result in an error. */ export declare function toboolOutput(args: ToboolOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface ToboolOutputArgs { input: any; }