import { TextProps as ChakraTextProps } from '@chakra-ui/react/text'; export type TextProps = Omit & { ref?: React.Ref; slot?: string | null | undefined; }; /** * # Text * * the Text component is used to display text * * @see {@link https://nimbus-documentation.vercel.app/components/typography/text} * * @supportsStyleProps */ export declare const Text: { ({ ref: forwardedRef, ...props }: TextProps): import("react/jsx-runtime").JSX.Element; displayName: string; };