import type { Ref } from 'vue';
import type { Block, Description, Rounded, Size, State, StateIcon } from '../../../globals/types';
type Resize = true | false | 'y' | 'x';
interface PropTypes {
    size: Ref<Size>;
    rounded: Ref<Rounded>;
    state: Ref<State>;
    stateIcon: Ref<StateIcon>;
    block: Ref<Block>;
    description: Ref<Description>;
    resize: Ref<Resize>;
}
export declare function useTextareaClasses(props: PropTypes, attrs: any): {
    textareaClasses: import("vue").ComputedRef<(string | object | null)[]>;
    stateIconClasses: import("vue").ComputedRef<(string | object | null)[]>;
};
export {};
