/// import { Theme } from 'styled-components'; import { BaseCSSProperties } from '../../types'; export interface Props extends BaseCSSProperties { area: string; justify: 'start' | 'end' | 'center' | 'stretch'; align: 'start' | 'end' | 'center' | 'stretch'; } export interface ThemedProps extends Props { theme: Theme; } declare const Area: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, Props>>; export default Area;