import { ChildProperty } from '@syncfusion/ej2-base'; /** * Defines the space to be left between an object and its immediate parent */ export declare class Margin extends ChildProperty { /** * Sets the space to be left from the left side of the immediate parent of an element * * @default 10 */ left: number; /** * Sets the space to be left from the right side of the immediate parent of an element * * @default 10 */ right: number; /** * Sets the space to be left from the top side of the immediate parent of an element * * @default 10 */ top: number; /** * Sets the space to be left from the bottom side of the immediate parent of an element * * @default 10 */ bottom: number; }