import React from 'react'; import { type StudioAppBarContextAction } from './studioAppBarModel'; type AppBarHandlers = Readonly<{ clearSelection: () => void; openAdministration: () => void; openBindings: () => void; openDelete: () => void; openInsert: () => void; openProperties: () => void; selectParent: () => void; togglePreviewMode: () => void; }>; export declare function createStudioAppBarActions(contextActions: StudioAppBarContextAction[], handlers: AppBarHandlers, previewMode: boolean): React.ReactNode[]; export {}; //# sourceMappingURL=createStudioAppBarActions.d.ts.map