/// export declare const useOptionCommands: () => ({ label: string; icon: JSX.Element; isChecked: boolean; command: () => void; isDisabled?: undefined; } | { label: string; icon: JSX.Element; isChecked: boolean; isDisabled: boolean; command: () => void; })[];