import * as pulumi from "@pulumi/pulumi"; /** * Returns the greatest integer value less than or equal to the argument. */ export declare function floor(args: FloorArgs, opts?: pulumi.InvokeOptions): Promise; export interface FloorArgs { input: number; } export interface FloorResult { readonly result: number; } /** * Returns the greatest integer value less than or equal to the argument. */ export declare function floorOutput(args: FloorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface FloorOutputArgs { input: pulumi.Input; }