import { HttpCommandBase } from '../../infrastructure/api/httpCommandBase'; import { HttpMethod } from '../../infrastructure/api/httpMethod'; import { Story } from '../models/story'; export declare class GetStoryByIdCommand extends HttpCommandBase { shouldPersonalize: boolean; endpoint: string; method: HttpMethod; storyId: string; constructor(storyId: string); buildEndpoint(): string; transformResponse(story: Story | null): Story | null; }