import { SelectorProps } from "../Selector";
import { Accessor } from "solid-js";
interface SelectorOptionButtonProps extends Partial<SelectorProps> {
    value: string;
    index: Accessor<number>;
    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 {};
