import * as pulumi from "@pulumi/pulumi"; /** * Returns the least integer value greater than or equal to the argument. */ export declare function ceil(args: CeilArgs, opts?: pulumi.InvokeOptions): Promise; export interface CeilArgs { input: number; } export interface CeilResult { readonly result: number; } /** * Returns the least integer value greater than or equal to the argument. */ export declare function ceilOutput(args: CeilOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface CeilOutputArgs { input: pulumi.Input; }