import { z } from "zod"; //#region src/schemas/slide-schemas.d.ts declare const GetSlideSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; }, z.core.$strip>; declare const AddSlideSchema: z.ZodObject<{ filePath: z.ZodString; insertAfterIndex: z.ZodOptional; backgroundColor: z.ZodOptional; }, z.core.$strip>; declare const DeleteSlidesSchema: z.ZodObject<{ filePath: z.ZodString; slideIndexes: z.ZodArray; }, z.core.$strip>; declare const ReorderSlidesSchema: z.ZodObject<{ filePath: z.ZodString; newOrder: z.ZodArray; }, z.core.$strip>; declare const DuplicateSlideSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; targetIndex: z.ZodOptional; }, z.core.$strip>; declare const UpdateSlidePropertiesSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; backgroundColor: z.ZodOptional; backgroundGradient: z.ZodOptional; backgroundImage: z.ZodOptional; notes: z.ZodOptional; hidden: z.ZodOptional; }, z.core.$strip>; declare const SetSlideTransitionSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; type: z.ZodString; durationMs: z.ZodOptional; direction: z.ZodOptional; advanceOnClick: z.ZodOptional; advanceAfterMs: z.ZodOptional; }, z.core.$strip>; declare const SetCanvasSizeSchema: z.ZodObject<{ filePath: z.ZodString; width: z.ZodNumber; height: z.ZodNumber; }, z.core.$strip>; declare const ConvertToMarkdownSchema: z.ZodObject<{ filePath: z.ZodString; outputDir: z.ZodOptional; mediaFolderName: z.ZodOptional; includeMetadata: z.ZodOptional; slideRange: z.ZodOptional; end: z.ZodOptional; }, z.core.$strip>>; includeSpeakerNotes: z.ZodOptional; semanticMode: z.ZodOptional; }, z.core.$strip>; declare const AccessibilityCheckSchema: z.ZodObject<{ filePath: z.ZodString; }, z.core.$strip>; //#endregion //#region src/schemas/element-schemas.d.ts declare const AddElementSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; type: z.ZodEnum<{ connector: "connector"; image: "image"; shape: "shape"; table: "table"; text: "text"; }>; x: z.ZodOptional; y: z.ZodOptional; width: z.ZodOptional; height: z.ZodOptional; text: z.ZodOptional; fontSize: z.ZodOptional; fontFamily: z.ZodOptional; fontColor: z.ZodOptional; bold: z.ZodOptional; italic: z.ZodOptional; underline: z.ZodOptional; alignment: z.ZodOptional>; shapeType: z.ZodOptional; fillColor: z.ZodOptional; strokeColor: z.ZodOptional; strokeWidth: z.ZodOptional; imageData: z.ZodOptional; altText: z.ZodOptional; rows: z.ZodOptional; columns: z.ZodOptional; cellData: z.ZodOptional>>; headerRow: z.ZodOptional; startArrow: z.ZodOptional; endArrow: z.ZodOptional; startShapeId: z.ZodOptional; endShapeId: z.ZodOptional; }, z.core.$strip>; declare const UpdateElementSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementId: z.ZodString; x: z.ZodOptional; y: z.ZodOptional; width: z.ZodOptional; height: z.ZodOptional; rotation: z.ZodOptional; text: z.ZodOptional; fontSize: z.ZodOptional; fontFamily: z.ZodOptional; fontColor: z.ZodOptional; bold: z.ZodOptional; italic: z.ZodOptional; underline: z.ZodOptional; alignment: z.ZodOptional>; fillColor: z.ZodOptional; strokeColor: z.ZodOptional; strokeWidth: z.ZodOptional; opacity: z.ZodOptional; hidden: z.ZodOptional; flipH: z.ZodOptional; flipV: z.ZodOptional; }, z.core.$strip>; declare const DeleteElementsSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementIds: z.ZodArray; }, z.core.$strip>; declare const ArrangeElementsSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; action: z.ZodEnum<{ align: "align"; reorderLayer: "reorderLayer"; }>; elementIds: z.ZodOptional>; alignment: z.ZodOptional>; elementId: z.ZodOptional; layerAction: z.ZodOptional>; }, z.core.$strip>; declare const CloneElementSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementId: z.ZodString; targetSlideIndexes: z.ZodOptional>; offsetX: z.ZodOptional; offsetY: z.ZodOptional; }, z.core.$strip>; declare const SetElementAnimationSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementId: z.ZodString; entrance: z.ZodOptional; exit: z.ZodOptional; durationMs: z.ZodOptional; delayMs: z.ZodOptional; order: z.ZodOptional; }, z.core.$strip>; declare const GroupElementsSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementIds: z.ZodArray; }, z.core.$strip>; declare const UngroupElementsSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; groupElementId: z.ZodString; }, z.core.$strip>; declare const BatchUpdateElementsSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementIds: z.ZodArray; x: z.ZodOptional; y: z.ZodOptional; width: z.ZodOptional; height: z.ZodOptional; rotation: z.ZodOptional; opacity: z.ZodOptional; hidden: z.ZodOptional; }, z.core.$strip>; //#endregion //#region src/schemas/table-style-schemas.d.ts declare const UpdateTableCellsSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementId: z.ZodString; cells: z.ZodArray>; }, z.core.$strip>; declare const ManageTableStructureSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementId: z.ZodString; action: z.ZodEnum<{ deleteColumn: "deleteColumn"; deleteRow: "deleteRow"; insertColumn: "insertColumn"; insertRow: "insertRow"; }>; position: z.ZodOptional; referenceIndex: z.ZodOptional; cellTexts: z.ZodOptional>; }, z.core.$strip>; declare const UpdateElementStyleSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementId: z.ZodString; fillColor: z.ZodOptional; fillMode: z.ZodOptional; fillGradientStops: z.ZodOptional; }, z.core.$strip>>>; fillGradientAngle: z.ZodOptional; fillGradientType: z.ZodOptional; fillOpacity: z.ZodOptional; strokeColor: z.ZodOptional; strokeWidth: z.ZodOptional; strokeDash: z.ZodOptional; strokeOpacity: z.ZodOptional; shadowColor: z.ZodOptional; shadowBlur: z.ZodOptional; shadowOffsetX: z.ZodOptional; shadowOffsetY: z.ZodOptional; shadowOpacity: z.ZodOptional; glowColor: z.ZodOptional; glowRadius: z.ZodOptional; glowOpacity: z.ZodOptional; softEdgeRadius: z.ZodOptional; cropLeft: z.ZodOptional; cropTop: z.ZodOptional; cropRight: z.ZodOptional; cropBottom: z.ZodOptional; brightness: z.ZodOptional; contrast: z.ZodOptional; grayscale: z.ZodOptional; altText: z.ZodOptional; }, z.core.$strip>; declare const FindTextSchema: z.ZodObject<{ filePath: z.ZodString; query: z.ZodString; useRegex: z.ZodOptional; caseSensitive: z.ZodOptional; slideIndexes: z.ZodOptional>; }, z.core.$strip>; declare const ReplaceTextSchema: z.ZodObject<{ filePath: z.ZodString; query: z.ZodString; replacement: z.ZodString; useRegex: z.ZodOptional; caseSensitive: z.ZodOptional; slideIndexes: z.ZodOptional>; }, z.core.$strip>; declare const ManageCommentsSchema: z.ZodObject<{ filePath: z.ZodString; action: z.ZodEnum<{ add: "add"; delete: "delete"; list: "list"; resolve: "resolve"; }>; slideIndex: z.ZodOptional; text: z.ZodOptional; author: z.ZodOptional; commentId: z.ZodOptional; resolved: z.ZodOptional; includeResolved: z.ZodOptional; }, z.core.$strip>; //#endregion //#region src/schemas/theme-schemas.d.ts declare const GetThemeInfoSchema: z.ZodObject<{ filePath: z.ZodString; }, z.core.$strip>; declare const ApplyThemePresetSchema: z.ZodObject<{ filePath: z.ZodString; presetName: z.ZodString; }, z.core.$strip>; declare const UpdateThemeColorsSchema: z.ZodObject<{ filePath: z.ZodString; dk1: z.ZodOptional; lt1: z.ZodOptional; dk2: z.ZodOptional; lt2: z.ZodOptional; accent1: z.ZodOptional; accent2: z.ZodOptional; accent3: z.ZodOptional; accent4: z.ZodOptional; accent5: z.ZodOptional; accent6: z.ZodOptional; hlink: z.ZodOptional; folHlink: z.ZodOptional; }, z.core.$strip>; declare const UpdateThemeFontsSchema: z.ZodObject<{ filePath: z.ZodString; majorFont: z.ZodOptional; minorFont: z.ZodOptional; }, z.core.$strip>; //#endregion //#region src/schemas/chart-schemas.d.ts declare const UpdateChartSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementId: z.ZodString; chartType: z.ZodOptional; title: z.ZodOptional; grouping: z.ZodOptional>; legend: z.ZodOptional; position: z.ZodOptional; }, z.core.$strip>>; dataLabels: z.ZodOptional; showValue: z.ZodOptional; showCategory: z.ZodOptional; showSeriesName: z.ZodOptional; showPercent: z.ZodOptional; }, z.core.$strip>>; axis: z.ZodOptional>; max: z.ZodOptional>; majorUnit: z.ZodOptional>; title: z.ZodOptional>; numberFormat: z.ZodOptional; majorGridlines: z.ZodOptional; minorGridlines: z.ZodOptional; }, z.core.$strip>; }, z.core.$strip>>; categories: z.ZodOptional>; }, z.core.$strip>; declare const AddChartSeriesSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementId: z.ZodString; name: z.ZodString; values: z.ZodArray; color: z.ZodOptional; }, z.core.$strip>; declare const RemoveChartSeriesSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementId: z.ZodString; seriesIndex: z.ZodNumber; }, z.core.$strip>; declare const UpdateChartSeriesDataSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementId: z.ZodString; seriesIndex: z.ZodNumber; values: z.ZodArray; }, z.core.$strip>; declare const CreateChartSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; chartType: z.ZodString; x: z.ZodOptional; y: z.ZodOptional; width: z.ZodOptional; height: z.ZodOptional; title: z.ZodOptional; categories: z.ZodOptional>; series: z.ZodOptional; color: z.ZodOptional; }, z.core.$strip>>>; legend: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>; //#endregion //#region src/schemas/smartart-schemas.d.ts declare const ManageSmartArtSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementId: z.ZodString; action: z.ZodEnum<{ addNode: "addNode"; decompose: "decompose"; demoteNode: "demoteNode"; getNodes: "getNodes"; promoteNode: "promoteNode"; removeNode: "removeNode"; reorderNode: "reorderNode"; updateNodeText: "updateNodeText"; }>; nodeId: z.ZodOptional; text: z.ZodOptional; afterNodeId: z.ZodOptional; direction: z.ZodOptional; }, z.core.$strip>; //#endregion //#region src/schemas/template-schemas.d.ts declare const FindPlaceholdersSchema: z.ZodObject<{ filePath: z.ZodString; }, z.core.$strip>; declare const ApplyTemplateSchema: z.ZodObject<{ filePath: z.ZodString; data: z.ZodRecord; }, z.core.$strip>; //#endregion //#region src/schemas/metadata-schemas.d.ts declare const GetMetadataSchema: z.ZodObject<{ filePath: z.ZodString; }, z.core.$strip>; declare const UpdateMetadataSchema: z.ZodObject<{ filePath: z.ZodString; title: z.ZodOptional; subject: z.ZodOptional; creator: z.ZodOptional; keywords: z.ZodOptional; description: z.ZodOptional; lastModifiedBy: z.ZodOptional; category: z.ZodOptional; company: z.ZodOptional; manager: z.ZodOptional; customProperties: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>; //#endregion //#region src/schemas/section-schemas.d.ts declare const ManageSectionsSchema: z.ZodObject<{ filePath: z.ZodString; action: z.ZodEnum<{ add: "add"; getForSlide: "getForSlide"; list: "list"; moveSlides: "moveSlides"; remove: "remove"; reorder: "reorder"; }>; name: z.ZodOptional; slideIndices: z.ZodOptional>; sectionId: z.ZodOptional; sectionIds: z.ZodOptional>; slideIndex: z.ZodOptional; }, z.core.$strip>; //#endregion //#region src/schemas/export-schemas.d.ts declare const ExportToSvgSchema: z.ZodObject<{ filePath: z.ZodString; slideIndices: z.ZodOptional>; includeHidden: z.ZodOptional; defaultFontFamily: z.ZodOptional; defaultFontSize: z.ZodOptional; }, z.core.$strip>; declare const ExportSlideSvgSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; defaultFontFamily: z.ZodOptional; defaultFontSize: z.ZodOptional; }, z.core.$strip>; //#endregion //#region src/schemas/hyperlink-schemas.d.ts declare const ManageHyperlinksSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; action: z.ZodEnum<{ list: "list"; remove: "remove"; set: "set"; }>; elementId: z.ZodOptional; trigger: z.ZodOptional>; url: z.ZodOptional; tooltip: z.ZodOptional; targetSlideIndex: z.ZodOptional; actionType: z.ZodOptional>; }, z.core.$strip>; //#endregion //#region src/schemas/geometry-schemas.d.ts declare const ReplaceGeometrySchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementId: z.ZodString; shapeType: z.ZodOptional; svgPath: z.ZodOptional; pathWidth: z.ZodOptional; pathHeight: z.ZodOptional; adjustments: z.ZodOptional>; }, z.core.$strip>; //#endregion //#region src/schemas/lock-schemas.d.ts declare const SetElementLockSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; elementId: z.ZodString; locked: z.ZodBoolean; noMove: z.ZodOptional; noResize: z.ZodOptional; noRotation: z.ZodOptional; noSelect: z.ZodOptional; noTextEdit: z.ZodOptional; }, z.core.$strip>; //#endregion //#region src/schemas/validation-schemas.d.ts declare const ValidatePresentationSchema: z.ZodObject<{ filePath: z.ZodString; }, z.core.$strip>; declare const RepairPresentationSchema: z.ZodObject<{ filePath: z.ZodString; }, z.core.$strip>; //#endregion //#region src/schemas/presentation-schemas.d.ts declare const GetPresentationPropertiesSchema: z.ZodObject<{ filePath: z.ZodString; }, z.core.$strip>; declare const UpdatePresentationPropertiesSchema: z.ZodObject<{ filePath: z.ZodString; showType: z.ZodOptional>; loopContinuously: z.ZodOptional; showWithNarration: z.ZodOptional; showWithAnimation: z.ZodOptional; advanceMode: z.ZodOptional>; showSlidesMode: z.ZodOptional>; showSlidesFrom: z.ZodOptional; showSlidesTo: z.ZodOptional; penColor: z.ZodOptional; }, z.core.$strip>; //#endregion //#region src/schemas/layout-schemas.d.ts declare const GetLayoutsSchema: z.ZodObject<{ filePath: z.ZodString; }, z.core.$strip>; declare const ApplyLayoutSchema: z.ZodObject<{ filePath: z.ZodString; slideIndex: z.ZodNumber; layoutName: z.ZodOptional; layoutType: z.ZodOptional; }, z.core.$strip>; //#endregion export { AccessibilityCheckSchema, AddChartSeriesSchema, AddElementSchema, AddSlideSchema, ApplyLayoutSchema, ApplyTemplateSchema, ApplyThemePresetSchema, ArrangeElementsSchema, BatchUpdateElementsSchema, CloneElementSchema, ConvertToMarkdownSchema, CreateChartSchema, DeleteElementsSchema, DeleteSlidesSchema, DuplicateSlideSchema, ExportSlideSvgSchema, ExportToSvgSchema, FindPlaceholdersSchema, FindTextSchema, GetLayoutsSchema, GetMetadataSchema, GetPresentationPropertiesSchema, GetSlideSchema, GetThemeInfoSchema, GroupElementsSchema, ManageCommentsSchema, ManageHyperlinksSchema, ManageSectionsSchema, ManageSmartArtSchema, ManageTableStructureSchema, RemoveChartSeriesSchema, ReorderSlidesSchema, RepairPresentationSchema, ReplaceGeometrySchema, ReplaceTextSchema, SetCanvasSizeSchema, SetElementAnimationSchema, SetElementLockSchema, SetSlideTransitionSchema, UngroupElementsSchema, UpdateChartSchema, UpdateChartSeriesDataSchema, UpdateElementSchema, UpdateElementStyleSchema, UpdateMetadataSchema, UpdatePresentationPropertiesSchema, UpdateSlidePropertiesSchema, UpdateTableCellsSchema, UpdateThemeColorsSchema, UpdateThemeFontsSchema, ValidatePresentationSchema }; //# sourceMappingURL=index.d.ts.map