import { ComputedRef, Ref } from 'vue'; import type { ColProps } from 'element-plus'; type IColProps = Partial>; export declare function useCol(props: Readonly | IColProps | Ref): { colStyle: ComputedRef<{ paddingLeft?: string; paddingRight?: string; }>; colClass: ComputedRef; gutter: Ref; }; export {};