import * as React from "react";
type DivProps = JSX.IntrinsicElements["div"];
export interface VSpaceProps extends DivProps {
    /**
     * A space-delimited list of class names to pass along to a child element.
     */
    className?: string;
    /**
     * The vertical spacing between each child element
     */
    space: 0 | 4 | 8 | 12 | 16 | 24;
}
export declare const VSpace: React.FC<VSpaceProps>;
export {};
