import React from 'react'; import { DocumentActionDescription, DocumentActionProps } from './types'; interface Action { (args: Args): Description; } interface RenderActionCollectionProps { actions: Action[]; actionProps: DocumentActionProps; onActionComplete: () => void; component: (args: { states: DocumentActionDescription[]; }) => React.ReactNode; } export declare function RenderActionCollectionState(props: RenderActionCollectionProps): React.JSX.Element; export {}; //# sourceMappingURL=RenderActionCollectionState.d.ts.map