import { StyleProperty } from "./types.js"; /** * Converts a {@link StyleProperty} to a css property name. * * @param usage - The StyleProperty key. * @returns The css property name. * @public */ export declare const stylePropertyToCssProperty: (usage: StyleProperty) => string;