import type { ButtonHTMLAttributes, FC, Ref } from 'react';
type FieldActionNativeProps = Omit, 'className' | 'color' | 'disabled'>;
export interface FieldActionBaseProps {
asChild?: boolean;
ref?: Ref;
}
type FieldActionProps = FieldActionNativeProps & FieldActionBaseProps;
export declare const FieldAction: FC;
export {};