import React from 'react'; export declare type ScaleSVGProps = { /** Child SVG to scale, rendered as the child of the parent wrappers provided by this component `
`. */ children?: React.ReactNode; /** Width of the desired SVG. */ width?: number | string; /** Height of the desired SVG. */ height?: number | string; /** xOrigin of the desired SVG. */ xOrigin?: number | string; /** yOrigin of the desired SVG. */ yOrigin?: number | string; /** Whether to preserve SVG aspect ratio. */ preserveAspectRatio?: string; /** Ref to the parent `` used for scaling. */ innerRef?: React.Ref