import { VNode } from '../stencil-public-runtime'; /** * @remarks * This method is used to parse the document style sheets and build a new sheet containing only pertinent values based on the provided string. * Note: Only necessary for elements in Shadow DOM that need access to the hosts styles. * * @param parseClasses - A string value that represents an elements class attribute * @returns A Constructed Style Sheet that contains only rules that match a value in the `classes` param */ export declare const cssStyleSheetParser: (parseClasses: string) => CSSStyleSheet; /** * @remarks * This method consumes a Constructed Style Sheet to build out a fragment containing a style node * * @param styleSheet - Constructed Style Sheet that contains the desired rules * @returns A Fragment containing the rules from the provided CSS Style Sheet */ export declare const getParsedStyleTag: (styleSheet: CSSStyleSheet) => VNode | null;