import { StyledProps } from '@smart-react-components/core/styled-props';
import { Partial, ResponsiveProp, ShapeProp, SizeProp } from '@smart-react-components/core/types';
export interface Props extends StyledProps, Partial<ResponsiveProp<'buttonSize', SizeProp>> {
    hasSpace?: boolean;
    isBlock?: boolean;
    isFixedSize?: boolean;
    length?: number;
    shape?: ShapeProp;
}
declare const _default: import("styled-components").StyledComponent<"div", any, StyledProps & Props, never>;
export default _default;
