/*! * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import { ExtendedHTMLElement } from '../helper/dom'; import { MynahIcons, MynahIconsType } from './icon'; interface MoreContentIndicatorProps { icon?: MynahIcons | MynahIconsType; border?: boolean; testId?: string; onClick: () => void; } export declare class MoreContentIndicator { render: ExtendedHTMLElement; private props; private button; private readonly uid; private readonly icon; constructor(props: MoreContentIndicatorProps); private readonly getButton; update: (props: Partial) => void; } export {};