import { LinearClient } from '@linear/sdk'; export type LinearTicket = { id: string; identifier: string; title: string; description: string | null; url: string; state?: string | null; status?: string | null; teamKey?: string | null; labels?: string[]; assignee?: string | null; }; export declare function fetchLinearTicket(idOrKey: string, token?: string, client?: LinearClient): Promise; export declare function moveLinearTicket(idOrKey: string, stateName: string, token?: string, client?: LinearClient): Promise;