import React from 'react';
import { ButtonListGenericProps } from '../types/button';
export interface Props extends ButtonListGenericProps {
    hasSpace?: boolean;
    template?: JSX.Element;
}
declare const ButtonList: React.FC<Props>;
export default ButtonList;
