import type { BreakpointConfig } from "./breakpoints.js"; export type InferSizesStyle = Partial<{ aspectRatio: number | string | null | undefined; width: number | string | null | undefined; minWidth: number | string | null | undefined; maxWidth: number | string | null | undefined; height: number | string | null | undefined; minHeight: number | string | null | undefined; maxHeight: number | string | null | undefined; }>; export type InferSizesInput = { baseSpacingPx?: number; breakpoints?: BreakpointConfig; className?: string; customSpacing?: Record; ratio?: number; src?: unknown; style?: InferSizesStyle; }; export type SizeInfo = { height?: string; minHeight?: string; maxHeight?: string; minWidth?: string; maxWidth?: string; width?: string; }; export type StaticImageData = { height: number; width: number; }; //# sourceMappingURL=types.d.ts.map