interface ParseComponentOptions {
    source: string;
    filename: string;
}
interface ParsedComponent {
    html: string;
    css: string;
    script: string[];
    module: string[];
}
export declare const parseComponent: ({ source, filename, }: ParseComponentOptions) => Promise<{
    parsed: ParsedComponent;
}>;
export {};
