export type Messages = {
    message: string;
    humanReadableTimestamp: string;
    author: string;
    authorType: 'agent' | 'customer';
}[];
export interface Ticket {
    id: number;
    subject: string;
    messages: Messages;
}
export declare const mockTickets: Ticket[];
