/**
 * wether the footer uses de default style or not
 * @defaultValue false
 */
type customFooterStyle = boolean;

/**
 * wether the footer is fixed to the bottom of the page
 * * @defaultValue false
 */
type fixedFooter = boolean;

/**
 * component props
 */
interface RitttzyFooterProps {
  fixed: fixedFooter;
  custom: customFooterStyle;
}

export { customFooterStyle, fixedFooter, RitttzyFooterProps };
