import React, { Ref } from 'react'; import './index.scss'; declare type Props = { left?: boolean; right?: boolean; negativeLeft?: boolean; negativeRight?: boolean; className?: string; children: React.ReactNode; ref?: Ref; }; export declare const Gutter: React.FC; export {};