import type { Empty } from './Common';
export type FaceModuleConfiguration = {
    showIntro?: boolean;
};
type FaceModuleVariant = 'standard';
export type FaceModuleInput = Empty;
export type FaceModuleOutput = {
    id: string;
    variant: FaceModuleVariant;
};
export type FaceFeatureFlags = {
    sign_upload?: boolean;
    passive_signals_on_upload?: boolean;
    enable_native_camera_fallback?: boolean;
};
export {};
