/** * Parse a sample rate from a given value. * This will either return a boolean or number sample rate, if the sample rate is valid (between 0 and 1). * If a string is passed, we try to convert it to a number. * * Any invalid sample rate will return `undefined`. */ export declare function parseSampleRate(sampleRate: unknown): number | undefined; //# sourceMappingURL=parseSampleRate.d.ts.map