import { FC } from 'react'; export interface FieldsetProps { /** * 自定义 class */ className?: string; layout?: 'vertical' | 'horizontal'; } export declare const Fieldset: FC;