export type Props = { goPrevious: () => void; goNext: () => void; isLast: boolean; isFirst: boolean; }; export type OrchestratorProps = { source: object; data?: object; }; export declare const OrchestratorForStories: (props: OrchestratorProps) => JSX.Element;