import { LitElement } from "lit"; /** * @element sky-row * * @summary Lightweight semantic row wrapper for use inside `sky-grid`. * * @status stable * @since 1.0.0 * * @documentation https://sky-ui.com/components/grid * @dependency sky-grid * * @slot - Default slot for child content. * * @Behavior * - Renders as `display: contents` so it does not add layout wrappers. * - Preserves semantic grouping for rows while children participate directly in parent layout. * * @example * ```html * * *
Account
*
Status
*
Actions
*
*
* ``` * ```vue * * ``` * ```jsx * export default function Demo() { * return ( * * *
Account
*
Status
*
Actions
*
*
* ); * } * ``` */ export declare class SkyRow extends LitElement { /** Named prop preset from nearest `sky-config-provider`. */ preset: string; private _presets; static styles: import("lit").CSSResult; render(): import("lit-html").TemplateResult<1>; }