import { ComponentProps, FC } from 'react'; import { BastInputGroupFeedback } from './BastInputGroupFeedback'; import { BastInputGroupInput } from './BastInputGroupInput'; import { BastInputGroupLabel } from './BastInputGroupLabel'; type TBastInputGroupProps = ComponentProps<'div'>; declare const BastInputGroup: FC & { Input: typeof BastInputGroupInput; Label: typeof BastInputGroupLabel; Feedback: typeof BastInputGroupFeedback; }; export { BastInputGroup };