import React, { HTMLAttributes } from "react"; import { OverrideClassName } from "@kaizen/component-base"; export interface FieldGroupProps extends OverrideClassName> { children?: React.ReactNode; inline?: boolean; /** * **Deprecated:** Use `classNameOverride` instead * @deprecated */ className?: string; /** * **Deprecated:** Use test id compatible with your testing library (eg. `data-testid`). * @deprecated */ automationId?: string; } /** * @deprecated Please use the same component from `@kaizen/components` */ export declare const FieldGroup: { ({ children, inline, classNameOverride, className, automationId, ...restProps }: FieldGroupProps): JSX.Element; displayName: string; };