///
import { SCIncubatorType } from '../types';
/**
:::info
This custom hook is used to fetch an incubator object.
:::
* @param object
* @param object.id
* @param object.incubator
*/
export default function useSCFetchIncubator({ id, incubator }: {
id?: number;
incubator?: SCIncubatorType;
}): {
scIncubator: SCIncubatorType;
setSCIncubator: import("react").Dispatch>;
error: string;
};
//# sourceMappingURL=useSCFetchIncubator.d.ts.map