/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { pdf } from '@progress/kendo-drawing';
import * as i0 from "@angular/core";
/**
* Represents the Kendo UI PDFMargin component for Angular.
*
* @example
* ```html
*
*
*
*
* ```
*/
export declare class PDFExportMarginComponent implements pdf.PageMargin {
/**
* Sets the left margin of the PDF page. Accepts a `number` or `string` value.
*
* The supported units are `"mm"`, `"cm"`, `"in"`, and `"pt"`. Numbers use points (`"pt"`).
* @default "pt"
*/
left?: number | string;
/**
* Sets the top margin of the PDF page. Accepts a `number` or `string` value.
*
* The supported units are `"mm"`, `"cm"`, `"in"`, and `"pt"`. Numbers use points (`"pt"`).
* @default "pt"
*/
top?: number | string;
/**
* Sets the right margin of the PDF page. Accepts a `number` or `string` value.
*
* The supported units are `"mm"`, `"cm"`, `"in"`, and `"pt"`. Numbers use points (`"pt"`).
* @default "pt"
*/
right?: number | string;
/**
* Sets the bottom margin of the PDF page. Accepts a `number` or `string` value.
*
* The supported units are `"mm"`, `"cm"`, `"in"`, and `"pt"`. Numbers use points (`"pt"`).
* @default "pt"
*/
bottom?: number | string;
/**
* @hidden
*/
get options(): any;
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}