import { JSX } from "solid-js"; import { BsPrefixProps, BsPrefixRefForwardingComponent } from "./helpers"; export interface FormTextProps extends BsPrefixProps, JSX.HTMLAttributes { muted?: boolean; } declare const FormText: BsPrefixRefForwardingComponent<"small", FormTextProps>; export default FormText;