/** @module @airtable/blocks/ui: TablePicker */ /** */ import * as React from 'react'; import { GlobalConfigKey } from '../types/global_config'; import { SharedTablePickerProps } from './table_picker'; /** * Props for the {@link TablePickerSynced} component. Also accepts: * * {@link SelectStyleProps} * * @docsPath UI/components/TablePickerSynced * @groupPath UI/components/TablePicker */ interface TablePickerSyncedProps extends SharedTablePickerProps { /** A string key or array key path in {@link GlobalConfig}. The selected table will always reflect the table id stored in {@link GlobalConfig} for this key. Selecting a new table will update {@link GlobalConfig}. */ globalConfigKey: GlobalConfigKey; } declare const ForwardedRefTablePickerSynced: React.ForwardRefExoticComponent>; export default ForwardedRefTablePickerSynced;