export interface ChatShareState {
  shareLoading?: boolean;
}

export const initialShareState: ChatShareState = {
  shareLoading: false,
};
