import { h, InputHTMLAttributes } from "preact";
import { Input as FlowInput } from "@teamhanko/hanko-frontend-sdk";
interface Props extends InputHTMLAttributes {
label?: string;
markOptional?: boolean;
markError?: boolean;
flowInput?: FlowInput;
}
declare const Input: ({ label, ...props }: Props) => h.JSX.Element;
export default Input;