import React from 'react'; import type { Dispatch, RefObject, SetStateAction } from 'react'; interface ComponentProps { forwardedRef: RefObject; setUpdated: Dispatch>; storyId: string | null; } /** * NewIssue. * * @param props Component props. * @param props.forwardedRef The ref. * @param props.storyId The story id. * @param props.setUpdated The set updated. * @returns The component. */ declare const NewIssue: { ({ forwardedRef, setUpdated, storyId }: ComponentProps): React.JSX.Element; displayName: string; }; export default NewIssue;