import React from 'react'; interface Props { confirmText: string; cancelText: string; middleText: string; middleTextColor: string; cancelTextColor: string; confirmTextColor: string; toolbarBackground: string; toolbarBorderColor: string; cancelTextStyle: object; middleTextStyle: object; confirmTextStyle: object; onConfirm: () => void; onCancel: () => void; } declare const _default: ({ confirmText, cancelText, middleText, middleTextColor, cancelTextColor, onCancel, confirmTextColor, toolbarBackground, toolbarBorderColor, onConfirm, cancelTextStyle, confirmTextStyle, middleTextStyle, }: Props) => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>; /** * Top action bar that displays above the picker modal which allows a user to confirm * their selections and close the modal. */ export default _default;