import { Space, SpaceIncludeParam } from "../../interfaces/models/Space";
import { PaginatedResponse } from "../../interfaces/PaginatedResponse";
export interface FetchSpaceChildrenProps {
    spaceId: string;
    page?: number;
    limit?: number;
    include?: SpaceIncludeParam;
}
declare function useFetchSpaceChildren(): (props: FetchSpaceChildrenProps) => Promise<PaginatedResponse<Space>>;
export default useFetchSpaceChildren;
