/** @module @airtable/blocks/ui: SelectButtons */ /** */ import * as React from "react"; import { GlobalConfigKey } from "../types/global_config"; import { SharedSelectButtonsProps } from "./select_buttons"; /** * Props for the {@link SelectButtonsSynced} component. Also accepts: * * {@link SelectButtonsStyleProps} * * @docsPath UI/components/SelectButtonsSynced * @groupPath UI/components/SelectButtons */ interface SelectButtonsSyncedProps extends SharedSelectButtonsProps { /** A string key or array key path in {@link GlobalConfig}. The selected option will always reflect the value stored in {@link GlobalConfig} for this key. Selecting a new option will update {@link GlobalConfig}. */ globalConfigKey: GlobalConfigKey; } declare const ForwardedRefSelectButtonsSynced: React.ForwardRefExoticComponent>; export default ForwardedRefSelectButtonsSynced;