import React from 'react';
interface Props {
    name: string;
    label?: string;
    type?: string;
    required?: boolean;
    placeholder?: string;
    defaultValue?: string;
    pattern?: string;
}
export default function FormKitInput({ name, label, type, required, placeholder, defaultValue, pattern, }: Props): React.JSX.Element;
export {};
