export declare const Tag: { baseStyle?: ((props: import("@chakra-ui/styled-system").StyleFunctionProps) => { container: { transitionProperty: string; transitionDuration: string; _focusWithin: any; borderRadius: string; _disabled: { bg: string; color: string; cursor: string; }; _hover: { _disabled: { bg: string; }; }; width: string; height: string; }; label: { textStyle: string; whiteSpace: string; }; closeButton: { display: string; alignItems: string; opacity: number; outline: string; _hover: { opacity: number; }; _disabled: { cursor: string; opacity: number; }; _focusVisible: { boxShadow: string; bg: string; }; }; }) | undefined; sizes?: { xs: ({ theme }: import("@chakra-ui/styled-system").StyleFunctionProps) => { container: any; label: any; icon: { fontSize: string; marginStart: string; marginEnd: string; height: string; }; closeButton: { fontSize: string; marginStart: string; height: string; }; }; sm: ({ theme }: import("@chakra-ui/styled-system").StyleFunctionProps) => { container: any; label: any; icon: { fontSize: string; marginStart: string; marginEnd: string; height: string; }; closeButton: { fontSize: string; marginStart: string; height: string; }; }; md: ({ theme }: import("@chakra-ui/styled-system").StyleFunctionProps) => { container: any; label: any; closeButton: { fontSize: string; marginStart: string; height: string; }; icon: { fontSize: string; marginStart: string; marginEnd: string; height: string; }; }; } | undefined; variants?: { subtle: (props: import("@chakra-ui/styled-system").StyleFunctionProps) => { container: any; }; solid: (props: import("@chakra-ui/styled-system").StyleFunctionProps) => { container: any; }; } | undefined; defaultProps?: { size?: "sm" | "md" | "xs" | undefined; variant?: "solid" | "subtle" | undefined; colorScheme?: string | undefined; } | undefined; parts: ("container" | "label" | "icon" | "closeButton")[]; };