import type { ComponentProps } from "react"; export interface Props extends ComponentProps<"text"> { label: string; } export default function TextLabel({ label, ...props }: Props): JSX.Element; //# sourceMappingURL=TextLabel.d.ts.map