import { SelectorProps } from "../Selector"; import { Accessor } from "solid-js"; interface SelectorOptionButtonProps extends Partial { value: string; index: Accessor; handleOptionClick: (index: number, value: string, callback?: () => void) => void; callback?: () => void; disabled?: boolean; noButtonAnimation?: boolean; } export declare const SelectorOptionButton: (props: SelectorOptionButtonProps) => import("solid-js").JSX.Element; export {};