declare class elementConfig { selector: string; template: string; style: string; useShadow: boolean; } declare const CustomElement: (config: elementConfig) => (cls: any) => void; export default CustomElement;