/// import { type PressableProps as NativeProps, type StyleProp, type ViewStyle } from 'react-native'; import type { SizeType } from '../../utils/TypesUtil'; export type ConnectButtonProps = NativeProps & { size?: Exclude; children: React.ReactNode; style?: StyleProp; loading?: boolean; disabled?: boolean; }; export declare function ConnectButton({ children, size, onPress, style, loading, disabled, ...rest }: ConnectButtonProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map