import type { CSSProperties, ComputedRef } from 'vue'; import type { DkRowPropsType } from '../../dkrow/src/prop'; import type { ClassListName } from '../../_interface'; interface DkRowType { classList: ComputedRef; styleList: CSSProperties; } export declare const getRow: (props: DkRowPropsType) => DkRowType; export {};