/// export interface FormFieldProps { children: React.ReactNode; className?: string; flow?: "horizontal" | "vertical"; } /** Provides styling for child form components such as Label, Input, Warning, and Error. * * [Figma Link](https://www.figma.com/file/a696svN2S7YNlZRYAkeLob/Stellar-Design-System?type=design&node-id=5981-14044&t=Ib4BYaUOqoKlAPlk-4) */ export declare const FormField: ({ flow, className, children, }: FormFieldProps) => import("react/jsx-runtime").JSX.Element;