declare const renderer: {
    minimize: (options?: {
        apiKey?: string;
    }) => void;
    maximize: (options?: {
        apiKey?: string;
    }) => void;
    close: (options?: {
        apiKey?: string;
    }) => void;
    unmaximize: (options?: {
        apiKey?: string;
    }) => void;
};
export default renderer;
