import React, { PropsWithChildren } from 'react'; export interface UnitInputContainerProps { unit: React.ReactNode; className?: string; } /** * Displays an input along with a unit. * * ``` * * * * ``` */ export declare function UnitInputContainer({ children, unit, className, }: PropsWithChildren): React.ReactElement;