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