import { HasId, ApiResponse } from './base';
export declare type Quote = HasId & {
    dialog: string;
    movie: string;
    character: string;
    id: string;
};
export declare type QuotesListResponse = ApiResponse<Quote>;
