import * as React from 'react'; import { type PressableProps, type StyleProp, type ViewStyle } from 'react-native'; type Props = { /** * Component to be displayed on the left side of the button */ leadingComponent?: React.ReactNode; /** * Component to be displayed on the right side of the button */ tailingComponent?: React.ReactNode; style?: StyleProp; } & PressableProps; export declare const BaseButton: React.FC>; export {}; //# sourceMappingURL=BaseButton.d.ts.map