import { FC } from 'react';

export interface GuideBarProps extends SVGRect {
    /**
     * Whether the guide bar is active.
     */
    active: boolean;
    /**
     * Fill for the guide bar element.
     */
    fill?: string;
    /**
     * Opacity for the guide bar element.
     */
    opacity?: number;
}
export declare const GuideBar: FC<Partial<GuideBarProps>>;
