import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
    attributes?: Record<string, any>;
}
declare const Picture: import("svelte").Component<Props, {}, "">;
type Picture = ReturnType<typeof Picture>;
export default Picture;
