import { FlexContainerAlign, FlexContainerDirection, FlexContainerJustify } from './flex-container.types';
/**
 * This component is deprecated and will be removed in a future version of
 * Lime Elements. Please use CSS for your flexible container needs 🙂
 * https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Basic_Concepts_of_Flexbox
 *
 * @deprecated - Please use CSS instead https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Basic_Concepts_of_Flexbox
 * @private
 * @slot - Container content
 */
export declare class FlexContainer {
  /**
   * Direction of the main axis
   */
  direction: FlexContainerDirection;
  /**
   * Specify how items are aligned along the main axis
   */
  justify: FlexContainerJustify;
  /**
   * Specify how items are aligned along the cross axis
   */
  align: FlexContainerAlign;
  /**
   * Reverse the order of the items
   */
  reverse: boolean;
  componentWillLoad(): void;
  render(): any;
}
//# sourceMappingURL=flex-container.d.ts.map