import type { Empty } from './Common';
export type FaceVideoModuleConfiguration = {
    showIntro?: boolean;
    showConfirmation?: boolean;
};
type FaceVideoModuleVariant = 'video';
export type FaceVideoModuleInput = Empty;
export type FaceVideoModuleOutput = {
    id: string;
    variant: FaceVideoModuleVariant;
};
export type FaceVideoFeatureFlags = {
    sign_upload?: boolean;
    passive_signals_on_upload?: boolean;
    webm_mime_type_preference: string[];
    photo_capture_fallback?: boolean;
};
export {};
