/**
 * FastAPI
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 0.1.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface Brand
 */
export interface Brand {
    /**
     *
     * @type {string}
     * @memberof Brand
     */
    id: string;
    /**
     *
     * @type {string}
     * @memberof Brand
     */
    name: string;
    /**
     *
     * @type {string}
     * @memberof Brand
     */
    logo_url?: string | null;
    /**
     *
     * @type {string}
     * @memberof Brand
     */
    description?: string | null;
}
/**
 * Check if a given object implements the Brand interface.
 */
export declare function instanceOfBrand(value: object): value is Brand;
export declare function BrandFromJSON(json: any): Brand;
export declare function BrandFromJSONTyped(json: any, ignoreDiscriminator: boolean): Brand;
export declare function BrandToJSON(json: any): Brand;
export declare function BrandToJSONTyped(value?: Brand | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=Brand.d.ts.map