import { TsxAllowUnknowProperties } from "../../TsxAllowUnknowProperties";
import { IValidator } from "../../validation";
export interface IAppTitleInput {
    title: string;
    onTitleChanged: (value: string) => void;
    useValidator: IValidator;
    dark?: boolean;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface IntrinsicElements {
            "omfx-app-title-input": TsxAllowUnknowProperties<IAppTitleInput>;
        }
    }
}
