export declare function windowsPickFile(title?: string, options?: {
    type?: string | undefined;
    forSave?: boolean | undefined;
    defaultName?: string | undefined;
}): Promise<string | null>;
export declare function windowsPickFiles(title?: string, type?: string): Promise<string[]>;
export declare function windowsPickFolder(title?: string): Promise<string | null>;
