import * as pulumi from "@pulumi/pulumi"; /** * Returns all but the last element of path, typically the path's directory. */ export declare function dirname(args: DirnameArgs, opts?: pulumi.InvokeOptions): Promise; export interface DirnameArgs { input: string; } export interface DirnameResult { readonly result: string; } /** * Returns all but the last element of path, typically the path's directory. */ export declare function dirnameOutput(args: DirnameOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface DirnameOutputArgs { input: pulumi.Input; }