interface SpaceProps { /** The different spacing values to showcase. */ scale: (string | number)[] | Record; } /** With the Styleshowcase component you can render CSS custom properties showcases based on a prefix and a style key. */ export declare const Space: ({ scale }: SpaceProps) => JSX.Element; export {};