import React from 'react'; export interface TokenProps { label: string; subdued?: boolean; isHoverTarget?: boolean; isEmpty?: boolean; maxWidth?: string; onClick?: (event: React.SyntheticEvent) => void; hasError?: boolean; 'aria-expanded'?: boolean; } interface ChipTokenProps { showError?: boolean; } /** * Builds the text portion of the FilterToken component * that displays the summary (label) description of a filter's value */ export declare const Token: React.ForwardRefExoticComponent>; export declare const TokenBase: import("styled-components").StyledComponent>, import("csstype").Property.MaxWidth> & import("@looker/components").GenericClickProps & { iconLabel?: string | undefined; onDelete?: ((e?: React.KeyboardEvent | React.MouseEvent | undefined) => void) | undefined; prefix?: string | undefined; readOnly?: boolean | undefined; } & React.RefAttributes>, import("styled-components").DefaultTheme, { role: "button"; } & import("@looker/components").ChipButtonProps & ChipTokenProps & { maxWidth?: string | undefined; }, "role">; export declare const SubduedToken: import("styled-components").StyledComponent>, import("csstype").Property.MaxWidth> & import("@looker/components").GenericClickProps & { iconLabel?: string | undefined; onDelete?: ((e?: React.KeyboardEvent | React.MouseEvent | undefined) => void) | undefined; prefix?: string | undefined; readOnly?: boolean | undefined; } & React.RefAttributes>, import("styled-components").DefaultTheme, { role: "button"; } & import("@looker/components").ChipButtonProps & ChipTokenProps & { maxWidth?: string | undefined; }, "role">; export {};