/**
 * @param {{tagString?: string, modelValueType?: modelValueType}} [customConfig]
 */
export function runFormatMixinSuite(customConfig?: {
    tagString?: string | undefined;
    modelValueType?: modelValueType | undefined;
} | undefined): void;
export type FormControlHost = import('../types/FormControlMixinTypes').FormControlHost;
export type modelValueType = ArrayConstructor | ObjectConstructor | NumberConstructor | BooleanConstructor | StringConstructor | DateConstructor | 'iban' | 'email';
