///
export type SpacerProps = React.ComponentPropsWithRef<'div'> & {
children?: React.ReactNode;
width?: string;
height?: string;
backgroundColor?: string;
color?: string;
};
export declare const Spacer: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;