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