import React, { PropsWithChildren } from 'react'; import { getCellStyle } from './styles'; export declare type StyledContainerProps = PropsWithChildren & { key?: string; node: any; raw?: any; css?: any; component?: any; viewport?: 'desktop' | 'mobile'; [key: string]: any; viewportOnly?: boolean; breakpoint: number; }; /** * StyledContainer * This component applies all of the style properties to "Containers" which are used * around elements and other "Containers". This component is used by both hosted forms * and the editor to render "Containers". */ export declare const StyledContainer: React.ForwardRefExoticComponent & React.RefAttributes>; export { getCellStyle }; //# sourceMappingURL=index.d.ts.map