import { Scenario } from "../../../configuration/scenario/Scenario";
export interface StreamDetails {
    sid: string;
    call: {
        from: string;
        to: string;
    };
}
/**
 * Returns the filename used for recording a stream. The filename returned does not
 * need to contain the path nor extension.
 */
export declare type FilenameFactory = (stream: StreamDetails, scenario: Scenario, customSuffix?: string) => string;
