///
import { type DrawOptions } from "@orderly.network/hooks";
export type PosterProps = {
width: number;
height: number;
className?: string;
ratio?: number;
data: DrawOptions;
style?: React.CSSProperties;
};
export type PosterRef = {
download: (filename: string, type?: string, encoderOptions?: number) => void;
toDataURL: (type?: string, encoderOptions?: number) => string;
toBlob: (type?: string, encoderOptions?: number) => Promise;
copy: () => Promise;
};
export declare const Poster: import("react").ForwardRefExoticComponent>;
//# sourceMappingURL=poster.d.ts.map