import { default as React } from 'react'; type SpanProps = { as?: 'span'; } & React.ComponentPropsWithoutRef<'span'>; type DivProps = { as?: 'div'; } & React.ComponentPropsWithoutRef<'div'>; export type RootProps = Omit & { color: string; size: 'xs' | 'sm' | 'md' | 'lg'; bordered?: boolean; wide?: boolean; }; /** */ export declare const Root: React.ForwardRefExoticComponent & { color: string; size: "xs" | "sm" | "md" | "lg"; bordered?: boolean; wide?: boolean; } & React.RefAttributes>; export {};