/**
 * AskNews API
 * AskNews API
 *
 * The version of the OpenAPI document: 0.18.6
 * Contact: contact@emergentmethods.ai
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Offset for pagination. The n_articles is your page size, while your offset is the number of articles to skip to get to your page of interest. For example, if you want to get page 3 for n_article page size of 10, you would set offset to 20.
 * @export
 * @interface Offset
 */
export interface Offset {
}
/**
 * Check if a given object implements the Offset interface.
 */
export declare function instanceOfOffset(value: object): boolean;
export declare function OffsetFromJSON(json: any): Offset;
export declare function OffsetFromJSONTyped(json: any, ignoreDiscriminator: boolean): Offset;
export declare function OffsetToJSON(value?: Offset | null): any;
