export interface Props {
    content?: string;
    size?: string;
    padding?: string;
    color?: string;
    bgcolor?: string;
    responsive?: string;
    errorCorrection?: string;
}
declare const Qrcode: import("svelte").Component<{
    content?: string;
    size?: string;
    padding?: string;
    color?: string;
    bgcolor?: string;
    responsive?: string;
    errorCorrection?: string;
}, {}, "">;
type Qrcode = ReturnType<typeof Qrcode>;
export default Qrcode;
