import React from 'react'; import type { ViewProps } from 'react-native'; import type { FABProps } from '../FAB'; export type InnerFABProps = Pick; export interface FABPairProps extends ViewProps { /** * Configuration for the main FAB. */ fabConfig: InnerFABProps; /** * Callback to be called when the cancel FAB is pressed. */ onCancel: () => void; } declare const Pair: ({ fabConfig, onCancel, ...props }: FABPairProps) => React.JSX.Element; export default Pair;