/**
 * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
export declare const useActionText: () => {
    /**
     * The current text from the default slot as $slots is not reactive
     */
    text: import('vue').Ref<string>;
    /**
     * Check if the passed text is considered long (currently > 20 characters)
     */
    isLongText: import('vue').ComputedRef<boolean | "">;
};
