import React from 'react'; import type { FC } from 'react'; import type { TextProps, StyleProp, TextStyle, ViewProps, ViewStyle } from 'react-native'; export interface SwipeButtonTextProps { /** * The text that will be displayed in the container */ title: string; /** * Additional props for the title text */ titleExtraTextProps?: TextProps; /** * Additional styling for the title text */ titleStyle?: StyleProp; /** * Additional props for the title container */ titleContainerExtraViewProps?: ViewProps; /** * Additional styling for the title container */ titleContainerStyle?: StyleProp; /** * Height of the title container */ height?: number; /** * An JSX element you can define to replace the title default component. Using this will omit the others title props */ titleElement?: React.JSX.Element; } declare const SwipeButtonText: FC; export default SwipeButtonText; //# sourceMappingURL=SwipeButtonText.d.ts.map