1 | import React from 'react';
|
2 | import { ViewStyle, TextStyle, StyleProp } from 'react-native';
|
3 | import { RneFunctionComponent } from '../helpers';
|
4 | import { ButtonProps } from '../buttons/Button';
|
5 | declare type ButtonInformation = {
|
6 | title: string;
|
7 | icon?: string;
|
8 | buttonStyle?: StyleProp<ViewStyle>;
|
9 | titleStyle?: StyleProp<TextStyle>;
|
10 | };
|
11 | export declare type PricingCardProps = {
|
12 | containerStyle?: StyleProp<ViewStyle>;
|
13 | wrapperStyle?: StyleProp<ViewStyle>;
|
14 | title?: string;
|
15 | price?: string | number;
|
16 | info?: string[];
|
17 | button?: ButtonProps | ButtonInformation;
|
18 | color?: string;
|
19 | onButtonPress?(): void;
|
20 | titleStyle?: StyleProp<TextStyle>;
|
21 | pricingStyle?: StyleProp<TextStyle>;
|
22 | infoStyle?: StyleProp<TextStyle>;
|
23 | };
|
24 | declare const PricingCard: RneFunctionComponent<PricingCardProps>;
|
25 | declare const PricingButton: (props: ButtonProps & {
|
26 | color?: string;
|
27 | onButtonPress?: () => void;
|
28 | }) => JSX.Element;
|
29 | export { PricingCard, PricingButton };
|
30 | declare const _default: React.FunctionComponent<Omit<PricingCardProps & Partial<import("../config").ThemeProps<PricingCardProps>>, keyof import("../config").ThemeProps<T>>> | React.ForwardRefExoticComponent<PricingCardProps & Partial<import("../config").ThemeProps<PricingCardProps>>>;
|
31 | export default _default;
|