import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import type { Theme, Sizes } from '../../types'; type Props = { disabled?: boolean; onPress: () => void; primary?: boolean; size?: Sizes; style?: StyleProp; theme: Theme; title: string; }; export declare const Item: ({ disabled, onPress, primary, size, style, theme, title, ...rest }: Props) => React.JSX.Element; declare const _default: React.ComponentType & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & (({ disabled, onPress, primary, size, style, theme, title, ...rest }: Props) => React.JSX.Element), {}>; export default _default; //# sourceMappingURL=MenuItem.d.ts.map