import * as React from 'react'; export type TextProps = React.ComponentPropsWithoutRef<'p'> & { asChild?: boolean; }; declare function Text({ className, asChild, ...props }: TextProps): import("react/jsx-runtime").JSX.Element; export { Text };