import "./btn.css"; import React from "react"; import { BaseButtonElementProps } from "./BaseButton"; import { DropdownButtonProps } from "./DropdownButton"; export type PageHeaderActionsDropdownButtonProps = Omit & DropdownButtonProps & { /** Whether the button needs attention. Adds warning styling and attention icon when true. */ needsAttention?: boolean; }; export declare function needsAttentionProps({ className, needsAttention, }: { className?: string; needsAttention?: boolean; }): { className: string; prefix: React.JSX.Element; } | { className: string | undefined; prefix?: undefined; }; export declare const PageHeaderActionsDropdownButton: React.ForwardRefExoticComponent & DropdownButtonProps & { /** Whether the button needs attention. Adds warning styling and attention icon when true. */ needsAttention?: boolean; } & React.RefAttributes>; //# sourceMappingURL=PageHeaderActionsDropdownButton.d.ts.map