///
import { Theme } from 'styled-components';
export interface Props {
spacing: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16;
height?: string;
debug?: boolean;
}
export interface ThemedProps extends Props {
theme: Theme;
}
declare const Spacer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, ThemedProps>>;
export default Spacer;