import { SerializedData } from '../../serialization/json.js';
export type NotesConvertResponseV2026R0TypeField = 'file';
export declare class NotesConvertResponseV2026R0 {
    /**
     * The Box resource type; always `file` for a Box file. */
    readonly type: NotesConvertResponseV2026R0TypeField;
    /**
     * Box file ID of the created `.boxnote` file. */
    readonly id: string;
    readonly rawData?: SerializedData;
    constructor(fields: Omit<NotesConvertResponseV2026R0, 'type'> & Partial<Pick<NotesConvertResponseV2026R0, 'type'>>);
}
export interface NotesConvertResponseV2026R0Input {
    /**
     * The Box resource type; always `file` for a Box file. */
    readonly type?: NotesConvertResponseV2026R0TypeField;
    /**
     * Box file ID of the created `.boxnote` file. */
    readonly id: string;
    readonly rawData?: SerializedData;
}
export declare function serializeNotesConvertResponseV2026R0TypeField(val: NotesConvertResponseV2026R0TypeField): SerializedData;
export declare function deserializeNotesConvertResponseV2026R0TypeField(val: SerializedData): NotesConvertResponseV2026R0TypeField;
export declare function serializeNotesConvertResponseV2026R0(val: NotesConvertResponseV2026R0): SerializedData;
export declare function deserializeNotesConvertResponseV2026R0(val: SerializedData): NotesConvertResponseV2026R0;
export declare function serializeNotesConvertResponseV2026R0Input(val: NotesConvertResponseV2026R0Input): SerializedData;
export declare function deserializeNotesConvertResponseV2026R0Input(val: SerializedData): NotesConvertResponseV2026R0Input;
//# sourceMappingURL=notesConvertResponseV2026R0.d.ts.map