import React from 'react'; interface Props { confirmText: string; confirmTextColor: string; toolbarBackground: string; toolbarBorderColor: string; onConfirm: () => void; } declare const _default: ({ confirmText, confirmTextColor, toolbarBackground, toolbarBorderColor, onConfirm, }: 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;