import { default as React } from 'react'; import { StateFirstDB, FlowSpec } from '@feltdb/core'; export interface ManagedPublishConfiguration { url: string; namespace: string; token?: string; environment?: string; applicationId?: string; publishEndpoint?: string; } export interface ApplicationDesignerProps { db?: StateFirstDB; namespace?: string; projectSpec?: FlowSpec | null; managedPublish?: ManagedPublishConfiguration; onSpecChange?: (spec: FlowSpec) => void; } export declare function ApplicationDesigner({ db, namespace, projectSpec, managedPublish, onSpecChange }: ApplicationDesignerProps): React.JSX.Element; export default ApplicationDesigner; //# sourceMappingURL=ApplicationDesigner.d.ts.map