import { Accessibility } from '@fluentui/accessibility'; import { ComponentWithAs } from '@fluentui/react-bindings'; import { FluentComponentStaticProps } from '../../types'; import { ChildrenComponentProps, UIComponentProps } from '../../utils'; export interface CardTopControlsProps extends UIComponentProps, ChildrenComponentProps { /** * Accessibility behavior if overridden by the user. */ accessibility?: Accessibility; } export declare type CardTopControlsStylesProps = never; export declare const cardTopControlsClassName = "ui-card__topcontrols"; /** * A CardTopControls is used to render control elements in the top of a Card component. */ export declare const CardTopControls: ComponentWithAs<'div', CardTopControlsProps> & FluentComponentStaticProps;