import * as React from 'react';
import { ListTypes } from './';
export interface ListButtonProps {
    icon: JSX.Element;
    type: ListTypes;
}
export declare const ListButton: React.FC<ListButtonProps>;
