///
interface StyledIconProps {
hasMargin?: string;
}
export declare const StyledIcon: import("styled-components").StyledComponent<({ name, color, size, ...other }: import("../Icon").IconProps & import("react").HTMLAttributes) => JSX.Element, any, StyledIconProps, never>;
interface StyledPillProps {
/** The background color of the lozenge */
background: string;
/** Is only icon */
hasIconOnly?: boolean;
/** Allow the Pill to take the size of its parent container */
stretch?: boolean;
/** The size of the pill */
size: 'small' | 'medium' | 'large';
/** Elevation */
elevation?: number;
}
export declare const StyledPill: import("styled-components").StyledComponent<"div", any, StyledPillProps, never>;
export {};