import { htmlSafe } from '@ember/template'; import { Column } from "../../index.js"; declare const isSticky: (column: Column) => boolean; declare const styleFor: (column: Column) => Partial; /** * In this plugin, both header and cells have the same styles, * if applicable. * * Until this RFC https://github.com/emberjs/rfcs/pull/883 * is merged and implemented, we can't performantly * use modifiers for apply styles. * * In the mean time, we'll need to append style strings, which is more work * for consumers, but is a reasonable trade-off for now. */ declare const styleStringFor: (column: Column) => ReturnType; export { isSticky, styleFor, styleStringFor };