import React from 'react';
export type SkeletonSettingsButtonProps = {
    /**
     *  Describes the specific role of this navigation component for users viewing the page with a screen
     *  reader. Use this to differentiate the buttons from other navigation buttons on a page.
     */
    label: string;
};
/**
 * __Skeleton settings button__
 *
 * Skeleton buttons are lightweight HTML button elements with CSS that represent
 * their heavier interactive counterparts, for use when elements of the
 * navigation are loaded dynamically. This one represents the Settings button.
 *
 * - [Examples](https://atlassian.design/components/atlassian-navigation/examples#skeleton-button)
 * - [Code](https://atlassian.design/components/atlassian-navigation/code)
 */
export declare const SkeletonSettingsButton: ({ label, }: SkeletonSettingsButtonProps) => React.JSX.Element;
export { Nav4SkeletonSettingsButton } from './nav4-skeleton-settings-button';
