export declare const chooseFileFromDisk: (args: import("@hylid/types").AsyncCallback<{ success: boolean; apFilePath: string; }> & { appId?: string | undefined; }) => void; export default chooseFileFromDisk; export declare const chooseFileFromDiskAsync: (args?: (import("@hylid/types").AsyncCallback<{ success: boolean; apFilePath: string; }> & { appId?: string | undefined; }) | undefined) => Promise<{ success: boolean; apFilePath: string; }>;