/** * The collapsed "Bind state (optional)" section every platform door screen adds * below its own fields. It is chrome only — the door fetches the catalogs (via its * own api-client + query stack) and passes them in; this wraps `StateBindingEditor` * in a keyboard-native disclosure that opens when a binding already exists. */ import { type ReactNode } from 'react'; import { type StateBindingEditorProps } from './StateBindingEditor'; export interface StateBindingSectionProps extends StateBindingEditorProps { /** Copy on the disclosure toggle. */ readonly label?: string; } export declare function StateBindingSection({ label, ...editor }: StateBindingSectionProps): ReactNode; //# sourceMappingURL=StateBindingSection.d.ts.map