import React from "react";

//#region src/FormControl/FormControlCaption.d.ts
type FormControlCaptionProps = React.PropsWithChildren<{
  id?: string;
  className?: string;
  style?: React.CSSProperties;
}>;
declare function FormControlCaption({
  id,
  children,
  className,
  style
}: FormControlCaptionProps): React.JSX.Element;
declare namespace FormControlCaption {
  var __SLOT__: symbol;
}
//#endregion
export { FormControlCaption, FormControlCaptionProps };