declare const variantStylesMap: { readonly neutral: import("styled-components").RuleSet; readonly positive: import("styled-components").RuleSet; readonly information: import("styled-components").RuleSet; readonly improvement: import("styled-components").RuleSet; readonly negative: import("styled-components").RuleSet; }; type Variant = keyof typeof variantStylesMap; /** The `` can be used to display information or status. #### Usage: ``` Active ``` #### Props: `variant` is a required props. All html native attributes and event handlers are optional, such as `id`, `onClick`, etc. */ export declare const Pill: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLSpanElement>, { variant?: Variant; }>> & string; export {};