import * as React from "react";
import type { ControlPosition, LogoControlOptions } from "../types/lib";
export type LogoControlProps = LogoControlOptions & {
    /** Placement of the control relative to the map. */
    position?: ControlPosition;
    /** CSS style override, applied to the control's container */
    style?: React.CSSProperties;
};
export declare const LogoControl: React.FC<LogoControlProps>;
