import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; /** * Represents the `ITableElementProps` interface. * * @public */ export interface ITableElementProps extends IAppearanceableProps { /** * A space-separated list of column definitions. * * @remarks * The value is similar to the value of the CSS grid-template-columns property. * * @example * ```html * * ``` * * @public */ columns: string; /** * A caption for the table. * * @public */ caption: string; } //# sourceMappingURL=ITableElementProps.d.ts.map