import XNode from "@web-atoms/core/dist/core/XNode"; import "./styles/form-field.global.css"; export interface IFormField { label: string | XNode; required?: boolean; error?: string; class?: string; helpIcon?: string | boolean; help?: string | object; helpEventClick?: any; /** * Display border, it will add an element in the * DOM with [data-border=border] which you can * customize using CSS */ border?: boolean; /** * Tooltip displayed on help icon */ helpTitle?: string; [key: string]: any; } export default function FormField({ label, required, error, helpIcon, help, helpEventClick, helpTitle, border, ...others }: IFormField, node: XNode): any; export declare function HorizontalFormField({ label, required, error, helpIcon, help, helpEventClick, helpTitle, border, ...others }: IFormField, node: XNode): any; //# sourceMappingURL=FormField.d.ts.map