import type { ComputedRef, CSSProperties } from 'vue'; import type { FilterParams } from '../..'; import type { ClassListName } from '../../../_interface'; export interface UseListReturn { classes: (list: FilterParams, className?: string) => ComputedRef; styles: (list: FilterParams, pixel?: boolean | string | string[]) => ComputedRef; stylesList: (borderColor: string[] | string | undefined, index?: number) => string | null; } export declare const getStyleList: (props: T, name: string) => UseListReturn;