import { SVGAttributes, RefObject } from 'react'; import { Padding, Margin } from '@macrostrat/ui-components'; declare const SVGNamespaces: { xmlns: string; xmlnsXlink: string; }; interface SVGProps extends SVGAttributes, Padding, Margin { innerHeight?: number; innerWidth?: number; innerRef?: RefObject; } interface SVGPropsWithNumericSize extends Omit { width?: number; height?: number; } declare const SVG: import('react').ForwardRefExoticComponent>; declare const ForeignObject: (props: any) => import('react').ReactSVGElement; declare const ColumnSVG: (props: SVGPropsWithNumericSize) => import('react').FunctionComponentElement>; export { SVGNamespaces, SVG, ColumnSVG, ForeignObject }; export * from './storage'; export * from './column-box'; export * from './scroll-box';