import { Theme } from '../../utils/theme'; export declare const getTagPrimary: (props: StyledTagProps) => import('styled-components').RuleSet; export declare const getTagOutline: (props: StyledTagProps) => import('styled-components').RuleSet; type StyledTagProps = { theme: Theme; $color: string; $type: 'normal' | 'rounded'; $variant: 'primary' | 'outline'; $icon?: string; $closable?: boolean; }; declare const StyledTag: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute, HTMLDivElement>, StyledTagProps>> & string; export { StyledTag };