import * as React from 'react';
export interface Props {
    onClick: () => void;
    testId?: string;
}
declare const ListToggle: React.FC<Props>;
export default ListToggle;
