export declare const handlePress: ({ onPress, value, onValueChange, }: { onPress?: () => void; value: string; onValueChange?: (value: string) => void; }) => void; export declare const isChecked: ({ value, status, contextValue, }: { value: string; status?: "checked" | "unchecked"; contextValue?: string; }) => "checked" | "unchecked";