import type { OptionalPlugin, PluginInjectionAPIWithDependencies } from '@atlaskit/editor-common/types'; import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics'; import type { DatePlugin, DeleteDate, InsertDate } from './types'; type DeleteDateCommand = (pluginInjectionApi: PluginInjectionAPIWithDependencies<[DatePlugin]> | undefined) => DeleteDate; /** Delete the date and close the datepicker */ export declare const deleteDateCommand: DeleteDateCommand; type InsertDateCommand = (pluginInjectionApi: PluginInjectionAPIWithDependencies<[ OptionalPlugin, DatePlugin ]> | undefined) => InsertDate; export declare const insertDateCommand: InsertDateCommand; export {};