import React from 'react';
import { ViewStyle, StyleProp } from 'react-native';
import type { ToggleData } from '../../types';
interface Props {
    name: string;
    items: Array<ToggleData>;
    style: StyleProp<ViewStyle>;
}
export declare const TextListButton: React.FC<Props>;
export {};
