interface TemplateProps {
    backgroundColor?: string;
    textColor?: string;
}
export default function Template({ backgroundColor, textColor, }: TemplateProps): JSX.Element;
export {};
