import React from 'react'; import { DefaultProps, FlowindNumberSize, FlowindSize } from '../../styles'; import { ContainerStylesParams } from './container.styles'; export interface ContainerProps extends DefaultProps { variant?: string; /** Predefined box-shadow from theme.shadows (xs, sm, md, lg, xl) or any valid css box-shadow property */ shadow?: FlowindSize; /** Key of theme.radius or any valid CSS value to set border-radius, theme.defaultRadius by default */ radius?: FlowindSize; /** Card padding used to offset Card.Section, use it instead of p prop */ padding?: 'none' | FlowindNumberSize; /** Adds border styles */ withBorder?: boolean; /** Paper children */ children?: React.ReactNode; } export declare const _Container: React.ForwardRefExoticComponent>; export declare const Container: ((props: import("../../utils/create-polymorphic-component").PolymorphicComponentProps) => React.ReactElement>) & Omit, "component" | keyof ContainerProps> & { ref?: any; }) | (ContainerProps & { component?: React.ElementType; })>, never> & Record;