import * as React from "react"; export type InlineSpacerProps = { children: React.ReactNode; gap?: 1 | 2 | undefined; }; /** * A wrapper component which evenly horizontally spaces its children, wrapping * when required. */ export declare const InlineSpacer: ({ children, gap }: InlineSpacerProps) => React.JSX.Element; //# sourceMappingURL=InlineSpacer.d.ts.map