import { ElementChildren, SpacerElement } from "../../typings"; import React from "react"; import { RecursivePartial } from "../../typings/helper"; export type SpacerProps = RecursivePartial & { idx?: string | null; children?: ElementChildren | SpacerElement["children"]; data?: SpacerElement["data"]; }; export declare function Spacer(props: SpacerProps): React.JSX.Element;