interface GetApplications {
    getApplications: (filePath: string) => Application[];
}
type Application = {
    name: string;
    path: string;
    iconPath: string | null;
};

declare const Mac: GetApplications;

export { Mac };
