import * as React from 'react';

export interface CardFolderTabProps {
  /** Specifies an unique id for a tab button. Use it to differentiate between tabs */
  id: string;
  /** Renders any content inside of a tab. */
  children: React.ReactNode;
  /** Defines the title of the tab. */
  name: React.ReactNode;
  /** Specifies whether the tab button is disabled. */
  disabled?: boolean;
}

export default class CardFolderTab extends React.PureComponent<CardFolderTabProps> {}
