import type { Components, JSX } from "../types/components";

interface PnSearchField extends Components.PnSearchField, HTMLElement {}
export const PnSearchField: {
    prototype: PnSearchField;
    new (): PnSearchField;
};
/**
 * Used to define this component and all nested components recursively.
 */
export const defineCustomElement: () => void;
