import type { CommonOptions } from './common'; export declare function path(opts: PathOptions): Promise; export declare interface PathOptions extends CommonOptions { root?: string directory?: boolean initialValue?: string message: string validate?: (value: string | undefined) => string | Error | undefined }