/// import { Theme } from 'styled-components'; import { BaseCSSProperties } from '../../types'; export interface Props extends BaseCSSProperties { xl: string; lg: string; md: string; sm: string; xs: string; } export interface ThemedProps extends Props { theme: Theme; } declare const Scale: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, Props>>; export default Scale;