import { TABLE_COL_TYPES } from "../../../utils/enums";
export declare class SlTableCol {
    type: TABLE_COL_TYPES | `${TABLE_COL_TYPES}`;
    isRead: boolean;
    /** Define if divider is hiding or not */
    hideDivider: boolean;
    element: HTMLSlTableColElement;
    iconColumnClass: string;
    buttonColumnClass: string;
    colActionClass: string;
    isFlyout: boolean;
    connectedCallback(): void;
    private renderColIcon;
    private renderColText;
    private renderColButton;
    private renderColAction;
    private renderFlyout;
    private renderColEmpty;
    private renderColCheckbox;
    private renderColDynamic;
    render(): any;
}
