import { Dispatch, FC, SetStateAction } from 'react'; import { SvgProps } from 'react-native-svg'; export interface AppBarAction { Icon: FC; size?: number; onPress: () => void; } // eslint-disable-next-line @typescript-eslint/no-explicit-any export interface CheckboxItem { label: string; value: T; disabled?: boolean; } export interface OverlayLoadingMethods { show: Dispatch>; } export interface DateTimePickerMethods { show: () => void; }