import { type EventEmitter } from "../../stencil-public-runtime"; export type ItemType = "button" | "link"; /** * A bottom bar item used within the bottom bar for navigation. Should not be * used outside of a bottom bar. */ export declare class ScoutBottomBarItem { /** * The type of the bottom bar item, either a button or a link. */ type: ItemType; /** * An optional link to navigate to when the item is clicked. Only used when * `type` is set to "link". */ href?: string; target?: string; rel?: string; /** * An icon to display above the label. Must be an SVG string. */ icon: string; /** * The label to display below the icon. */ label: string; /** * Whether the item is currently active. Should be set to true when the item * represents the current page. */ active?: boolean; scoutClick: EventEmitter; render(): any; }