/**
 * ```js
 * import { getRecordedUrl } from '@amityco/ts-sdk-react-native'
 * const recordedUrl = await getRecordedUrl('roomId')
 * ```
 *
 * Gets the recorded URL for a room
 *
 * @param roomId The ID of the room to get recorded URL for
 * @returns The recorded URL information
 *
 * @category Room API
 * @async
 */
export declare const getRecordedUrl: (roomId: string) => Promise<{
    url: string;
    expiresAt?: string;
}>;
//# sourceMappingURL=getRecordedUrl.d.ts.map