export interface RosterNameProps { name: string; subtitle?: string; } declare const RosterName: ({ name, subtitle }: RosterNameProps) => JSX.Element; export default RosterName;