declare type Key = 'attributes' | 'methods' | 'css';
declare type Values = {
    [key in Key]?: {
        [key: string]: any;
    };
};
export declare function useCustomElement(values: Values): (option: any) => void;
export {};
