import { ComputedRef } from 'vue'; import type { RowProps } from 'element-plus'; type IRowProps = Partial>; export declare function useRow(props: Readonly | IRowProps): { rowStyle: ComputedRef<{ marginLeft: string; marginRight: string; }>; rowClass: ComputedRef; }; export {};