/* eslint-disable */ /* tslint:disable */ /** * This is an autogenerated file created by the Stencil compiler. * It contains typing information for all components that exist in this project. */ import { HTMLStencilElement, JSXBase } from "@stencil/core/internal"; export namespace Components { interface MdsPaginatorItem { /** * Specifies if the item is disabled or not, is handled from the parent paginator */ "disabled"?: boolean; /** * Specifies the icon used inside the paginator item */ "icon"?: string; /** * Specifies if the item is selected or not, is handled from the parent paginator */ "selected"?: boolean; } } declare global { interface HTMLMdsPaginatorItemElement extends Components.MdsPaginatorItem, HTMLStencilElement { } var HTMLMdsPaginatorItemElement: { prototype: HTMLMdsPaginatorItemElement; new (): HTMLMdsPaginatorItemElement; }; interface HTMLElementTagNameMap { "mds-paginator-item": HTMLMdsPaginatorItemElement; } } declare namespace LocalJSX { interface MdsPaginatorItem { /** * Specifies if the item is disabled or not, is handled from the parent paginator */ "disabled"?: boolean; /** * Specifies the icon used inside the paginator item */ "icon"?: string; /** * Specifies if the item is selected or not, is handled from the parent paginator */ "selected"?: boolean; } interface IntrinsicElements { "mds-paginator-item": MdsPaginatorItem; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "mds-paginator-item": LocalJSX.MdsPaginatorItem & JSXBase.HTMLAttributes; } } }