/** @module @airtable/blocks/ui: Input */ /** */ import * as React from 'react'; import { GlobalConfigKey } from '../types/global_config'; import { SharedInputProps } from './input'; /** * Props for the {@link InputSynced} component. Also accepts: * * {@link InputStyleProps} * * @docsPath UI/components/InputSynced * @groupPath UI/components/Input */ interface InputSyncedProps extends SharedInputProps { /** A string key or array key path in {@link GlobalConfig}. The input value will always reflect the value stored in {@link GlobalConfig} for this key. Changing the input value will update {@link GlobalConfig}. */ globalConfigKey: GlobalConfigKey; } declare const ForwardedRefInputSynced: React.ForwardRefExoticComponent>; export default ForwardedRefInputSynced;