import { CSSResult } from './css-tag';
export interface StyledOptons {
    styles: string[];
}
export interface Styled {
    styles: CSSResult[];
    new (...args: any[]): HTMLElement;
}
export declare function styled<T extends Styled>(CustomElement: T): T;
