import { FunctionalComponent } from "../stencil-public-runtime"; export type DuetSource = { srcset: string; media?: string; type?: string; sizes?: string; }; export type DuetImg = { src: string; alt?: string; width?: string | number; height?: string | number; }; export type DuetPictureSource = { sources: DuetSource[]; img: DuetImg; }; export declare const DuetPicture: FunctionalComponent;