export declare function parseSelector(selector: string): {
    element: string | null;
    classNames: string[];
    attributes: Record<string, string>;
};
