import * as pulumi from "@pulumi/pulumi"; /** * Returns a filepath string with ~ expanded to the home directory. */ export declare function pathexpand(args: PathexpandArgs, opts?: pulumi.InvokeOptions): Promise; export interface PathexpandArgs { input: string; } export interface PathexpandResult { readonly result: string; } /** * Returns a filepath string with ~ expanded to the home directory. */ export declare function pathexpandOutput(args: PathexpandOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface PathexpandOutputArgs { input: pulumi.Input; }