import { type StyleProp, type TextStyle, type ViewStyle } from 'react-native'; import React from 'react'; type ButtonProps = { onPress?: () => void; label?: string | React.ReactNode; color?: string; buttonStyle?: StyleProp; buttonTextStyle?: StyleProp; }; export declare const Button: (props: ButtonProps) => number | boolean | Iterable | React.JSX.Element | null | undefined; export declare const SkipButton: (props: ButtonProps & { position?: 'top-left' | 'top-right'; }) => React.JSX.Element; export {}; //# sourceMappingURL=button.d.ts.map