import React from 'react';
import type { ToggleData } from '../../types';
interface Props {
    name: string;
    items: Array<ToggleData>;
}
export declare const ListButton: React.FC<Props>;
export {};
