import { FASTElement } from "@microsoft/fast-element";
/**
* Simple Table
* @summary A thin shell around native `
` that standardizes Fluent styling, RTL/high-contrast, and accessibility—without taking control of data, templates, or rendering.
*
* @example
* ```html
*
*
* Account Overview
*
*
* | Account |
* Owner |
* Status |
*
*
*
*
* | Contoso |
* A. Lee |
* Pending |
*
*
*
*
* ```
*
* @extends FASTElement
* @tagname fabric-simple-table
* @public
*/
export declare class SimpleTable extends FASTElement {
/**
* Lifecycle method called when the element is connected to the DOM.
* Applies the microsoft-fabric-ux-fabric-simple-table class to child table elements.
* @public
*/
connectedCallback(): void;
/**
* Applies the styling class to child table elements.
* @public
*/
applyTableClass(): void;
}
//# sourceMappingURL=simple-table.d.ts.map