import React from 'react'; import { FlintContainer as FlintContainerElement } from '@getufy/flint-ui/container/flint-container'; export interface FlintContainerProps extends React.HTMLAttributes { /** Determine the max-width of the container. */ maxWidth?: false | 'sm' | 'md' | 'lg' | 'xl' | 'xs'; /** If `true`, the left and right padding is removed. */ disableGutters?: boolean; /** Set the max-width to match the min-width of the current breakpoint. */ fixed?: boolean; } export declare const FlintContainer: React.ForwardRefExoticComponent>;