import { AliasToken } from "../../theme/interface/alias.js"; import { GetDefaultToken } from "../../theme/interface/cssinjs-utils.js"; import "../../theme/internal.js"; import * as vue630 from "vue"; //#region src/grid/style/index.d.ts interface ComponentToken {} declare const prepareRowComponentToken: GetDefaultToken<'Grid'>; declare const prepareColComponentToken: GetDefaultToken<'Grid'>; declare const useRowStyle: (prefixCls: vue630.Ref, rootCls?: vue630.Ref) => readonly [vue630.Ref, vue630.ComputedRef]; declare function getMediaSize(token: AliasToken): { readonly xs: number; readonly sm: number; readonly md: number; readonly lg: number; readonly xl: number; readonly xxl: number; readonly xxxl: number; }; declare const useColStyle: (prefixCls: vue630.Ref, rootCls?: vue630.Ref) => readonly [vue630.Ref, vue630.ComputedRef]; //#endregion export { ComponentToken, getMediaSize, prepareColComponentToken, prepareRowComponentToken, useColStyle, useRowStyle };