import { ThemeSection, Directive, CSSRules, Context } from 'twind'; declare module 'twind' { interface Theme { aspectRatio?: ThemeSection; } } interface Ratio { w: string | number; h: string | number; } interface AspectRatio { (ratio: 'none' | `${number}/${number}` | Ratio): Directive; (width: string | number, height: string | number): Directive; (parts: string[], context: Context): Directive; } declare const aspectRatio: AspectRatio; export { AspectRatio, Ratio, aspectRatio }; //# sourceMappingURL=aspect-ratio.d.ts.map