import { BreakpointSupport } from '../../../helpers'; import { VerticalSpacingSize } from './vertical-spacing'; type VerticalSpacingItemBreakpointProps = { /** * Size of spacing {size}em unit of margin-bottom * @default 1 */ size?: VerticalSpacingSize; }; export interface VerticalSpacingItemProps extends BreakpointSupport { /** * Any content to be rendered within the spacing component */ children: React.ReactNode; /** * The HTML element to render, such as `div`, `section`, `article`, etc * @default div */ element?: keyof JSX.IntrinsicElements; /** * Additional class name(s) to apply to the element */ className?: string; } export declare const VerticalSpacingItem: (props: VerticalSpacingItemProps) => JSX.Element; export default VerticalSpacingItem;