import type { RendererContext } from './types'; declare function check(this: RendererContext, Component: any, props: Record, children: any): boolean; declare function renderToStaticMarkup(this: RendererContext, Component: any, props: Record, { default: children, ...slotted }: any, metadata?: undefined | Record): { attrs: { 'data-solid-render-id': string; }; html: string; }; declare const _default: { check: typeof check; renderToStaticMarkup: typeof renderToStaticMarkup; supportsAstroStaticSlot: boolean; }; export default _default;