import React from 'react';
import type { ComponentProps } from '../../types';
/** Props for the Form.ButtonRow component which provides consistent spacing for form action buttons. */
export type FormButtonRowProps = ComponentProps & {
    children?: React.ReactNode;
};
declare function ButtonRow(props: FormButtonRowProps): import("react/jsx-runtime").JSX.Element;
export default ButtonRow;
