import { Props as RadioProps } from "./Radio"; interface Item { label: string; value: string; } interface Props extends Pick { state: string | null; handleChange: (value: string) => void; items: Item[]; } declare const RadioList: (props: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default RadioList;