import { default as Color } from 'color'; export interface Props { height: number; isSticky: boolean; backgroundColor?: Color; } export default function SpacerRow({ backgroundColor, isSticky, height }: Props): import("react/jsx-runtime").JSX.Element;