fictoan-react
Version:
A full-featured, designer-friendly, yet performant framework with plain-English props and focus on rapid iteration.
13 lines (12 loc) • 703 B
TypeScript
import React from "react";
import { CommonAndHTMLProps } from '../../Element/constants';
export interface FormItemGroupCustomProps {
isJoint?: boolean;
equalWidthForChildren?: React.ReactNode;
retainLayout?: boolean;
legend?: string;
}
export type FormItemGroupElementType = HTMLDivElement;
export type FormItemGroupProps = Omit<CommonAndHTMLProps<FormItemGroupElementType>, keyof FormItemGroupCustomProps> & FormItemGroupCustomProps;
export declare const FormItemGroup: React.ForwardRefExoticComponent<Omit<CommonAndHTMLProps<HTMLDivElement>, keyof FormItemGroupCustomProps> & FormItemGroupCustomProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=FormItemGroup.d.ts.map