type Fit = 'cover' | 'contain' | 'fill' | 'none' | 'scale-down'; interface Props { children?: import('svelte').Snippet; width?: string | number; height?: string | number; minWidth?: string | number; minHeight?: string | number; maxWidth?: string | number; maxHeight?: string | number; fit?: Fit; overflow?: 'visible' | 'hidden' | 'auto' | 'scroll'; class?: string; style?: string; 'aria-label'?: string; } declare const Frame: import("svelte").Component; type Frame = ReturnType; export default Frame;