import { TsxAllowUnknowProperties } from "../TsxAllowUnknowProperties";
export interface IInputToken {
    valueBind: string;
    onValueChanged?: (model: string) => void;
    label?: string;
    filled?: boolean;
    disabled?: boolean;
    loading?: boolean;
    class?: string[];
    dark?: boolean;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface IntrinsicElements {
            "omfx-input-token": TsxAllowUnknowProperties<IInputToken>;
        }
    }
}
