import { ComputedRef } from 'vue'; export declare const useCellWidthProps: { cellWidth: (StringConstructor | NumberConstructor)[]; }; /** * Determines whether the cell width is defined. * @param {Object} props - The component props. * @returns {Object} - The `isSticky` computed property. */ /** * Determines whether the cell width is defined. * @param {Object} props - The component props. * @returns {Object} - The `isSticky` computed property. */ /** * @param {Object} props - The component props. * @returns {Object} - An object containing the `isSticky` computed property. */ export interface CellWidthProps { cellWidth?: number | string; } interface UseCellWidthReturn { isSticky: ComputedRef; } export default function useCellWidth(props: CellWidthProps): UseCellWidthReturn; export {};