type ArtboardByTypes = 'index' | 'name'; export interface ArtboardBy { type: ArtboardByTypes; index?: number; name?: string; } /** * Creates an ArtboardBy object for the artboard at the given index. * @param {number} index - The index of the artboard to create an ArtboardBy object for. * @returns {ArtboardBy} An ArtboardBy object for the artboard at the given index. */ export declare const ArtboardByIndex: (index: number) => ArtboardBy; /** * Creates an ArtboardBy object for the artboard with the given name. * @param {string} name - The name of the artboard to create an ArtboardBy object for. * @returns {ArtboardBy} An ArtboardBy object for the artboard with the given name. */ export declare const ArtboardByName: (name: string) => ArtboardBy; export {}; //# sourceMappingURL=ArtboardBy.d.ts.map