import { type Held } from '../cascade'; export interface Report { line: number; column: number; kind: string; source: string; hint: string; } export interface Converted { code: string; names: Record; composes: Record; functions: Record; tags: Tags[]; held: Record; order: Record; unconvertible: string[]; reports: Report[]; } export interface Tags { key: string; tag: string; under: string; direct: boolean; order: number; } interface Raw { raw: string; } type Value = string | number | Raw; export declare const toProperty: (name: string) => string; export declare const toKey: (className: string) => string; export declare const toValue: (raw: string) => Value; export declare function convertStylesheet(css: string): Converted; export {};