interface NvSpacerProps { /** * Number inside this props are height of this component. !IMPORTANT: You must specify the unit of measurement: px, em, rem, or another. */ size?: string; } /** * Functional component for rendering a spacer with a specified size. * * @param {NvSpacerProps} size - The size of the spacer. Defaults to "20px". * @returns {JSX.Element} A div element representing the spacer with the specified size. */ declare const NvSpacer: ({ size }: NvSpacerProps) => import("react/jsx-runtime").JSX.Element; export default NvSpacer;