import * as pulumi from "@pulumi/pulumi"; /** * Returns an absolute representation of the specified path. * If the path is not absolute it will be joined with the current working directory to turn it into an absolute path. */ export declare function abspath(args: AbspathArgs, opts?: pulumi.InvokeOptions): Promise; export interface AbspathArgs { input: string; } export interface AbspathResult { readonly result: string; } /** * Returns an absolute representation of the specified path. * If the path is not absolute it will be joined with the current working directory to turn it into an absolute path. */ export declare function abspathOutput(args: AbspathOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface AbspathOutputArgs { input: pulumi.Input; }