import { Session } from './session-models'; /** * Validate the fields of a Session and its participants. * * @param session - The Sessions to validate. */ export declare const sessionValidator: (session: Session) => void; /** * Validate the fields with the sessionValidator then check for valid video * and participants photo. * * @param session - The Sessions to validate. */ export declare const finalizeRonSessionValidator: (session: Session) => void;