import { SpaceDetailed, SpaceIncludeParam } from "../../interfaces/models/Space";
export interface FetchSpaceProps {
    spaceId: string;
    include?: SpaceIncludeParam;
}
declare function useFetchSpace(): (props: FetchSpaceProps) => Promise<SpaceDetailed>;
export default useFetchSpace;
