import React from 'react'; import Div from '../Element/Div/Div'; import { CreateProps } from '../../types/utils/CreateProps'; declare type MarginSpaceProps = CreateProps<{ /** If the view is narrow */ narrow?: boolean; /** If the padding should be removed in the md and smaller screen size */ noPaddingForSmallerThanMd?: boolean; /** If the padding should be removed in the sm and smaller screen size */ noPaddingForSmallerThanSm?: boolean; /** HTML tag name: div, span, h1 etc */ tagName?: keyof JSX.IntrinsicElements; }, typeof Div>; export declare type MarginSpaceAttributes = MarginSpaceProps; declare const MarginSpace: React.FunctionComponent; export default MarginSpace;