/** * Values accepted by the `fit`, `kernel` and `position` transforms. * * These live in a module with no imports so the transform implementations and * `types.ts` can all reference them without creating a circular dependency. */ /** Values accepted by the `fit` transform. */ export declare const fitValues: readonly ["cover", "contain", "fill", "inside", "outside"]; /** Values accepted by the `kernel` transform. */ export declare const kernelValues: readonly ["nearest", "cubic", "mitchell", "lanczos2", "lanczos3"]; /** Values accepted by the `position` transform. */ export declare const positionValues: readonly ["top", "right top", "right", "right bottom", "bottom", "left bottom", "left", "left top", "north", "northeast", "east", "southeast", "south", "southwest", "west", "northwest", "center", "centre", "entropy", "attention"]; /** Position values that can also be given as a bare directive, e.g. `?top`. */ export declare const positionShorthands: string[];