import React from 'react'; import { ILine } from '../Line/Line'; import { IValueBreakpoints } from '../types'; export interface IContainer extends ILine { alignment?: 'start' | 'center' | 'end' | Partial>; paddingVertical?: 'both' | 'start' | 'end' | 'none' | Partial>; paddingHorizontal?: 'both' | 'start' | 'end' | 'none' | Partial>; fullWidth?: boolean | Partial>; maxWidth?: 'xxs' | 'xs' | 'sm' | 'rg' | 'lg' | 'xl' | 'unset' | Partial>; } declare const Container: React.FC; export default Container;