import type { CssTime } from '@breadstone/mosaik-themes'; import type { IAttachableProps } from '../../../Behaviors/Attachable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; /** * Represents the `IPerspectiveElementProps` interface. * * @public */ export interface IPerspectiveElementProps extends IDisableableProps, IAttachableProps { duration: CssTime; factor: number; } //# sourceMappingURL=IPerspectiveElementProps.d.ts.map