import { FunctionComponent, HTMLProps, ReactType } from 'react';
import { OneOf } from '../../typeUtils';
import { GutterSize } from '../../styles/gutters';
export interface StackProps extends HTMLProps {
component?: ReactType;
gutter?: OneOf;
}
declare const Stack: FunctionComponent;
export default Stack;