declare class Sound {
    id: string;
    localPath: string;
    constructor(localPath: string);
    load(remotePath: string): Promise<{
        note: Response;
        localPath: string;
    }>;
}
export default Sound;
